/* ========================================
   CUSTOM CSS - Real Estate Project MTN
   Note: Variables centralized in skin-real-estate.css
   Tipografías según Manual de Marca Mayo 2025
   ======================================== */

/*
================================================================
MTN TYPOGRAPHY APPLICATION - Manual de Marca Mayo 2025
================================================================
Satoshi (Medium-Bold): Títulos, headings, elementos destacados
Myriad Pro (Variable): Textos body, párrafos, formularios
================================================================
*/

/* HEADINGS - Satoshi (Medium-Bold) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.property-title,
.property-price,
.section-heading,
.hero-title,
.card-title,
.btn,
.navbar-brand,
.portfolio-item .portfolio-title,
.page-header h1 {
	font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-weight: 600; /* Medium-Bold según manual */
}

/* BODY TEXT - Myriad Pro (Variable) */
body,
p, .p,
.property-info,
.property-description,
.property-details,
.card-text,
.lead,
.contact-form label,
.contact-form input,
.contact-form textarea,
.form-control,
.portfolio-item .portfolio-description,
.breadcrumb,
.navbar-nav .nav-link {
	font-family: 'Myriad Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-weight: 400; /* Variable según manual */
}

/* SLOGAN MTN - "Buenos tratos, buenos momentos" */
.slogan-mtn,
.hero-subtitle,
.tagline {
	font-family: 'Myriad Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-weight: 300; /* Light según manual */
	font-style: italic; /* Como en el manual */
}

/*
================================================================
HOMEPAGE STYLES - Según Porto 12.1.0 (Movido desde Blade)
================================================================
*/

/* Hero Search Form - Porto style */
.hero-search-form {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Property Price Badge - Porto variables */
.property-price {
    background: linear-gradient(135deg, var(--primary), var(--primary-300));
    border-radius: 0 0 var(--border-radius-lg) 0;
}

/* Hero Overlay - Porto gradients */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), var(--primary-rgba-40));
}

/* Hero Section - Header transparente */
.hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-section .container {
    padding-top: 80px;
}

/* Carousel System - Porto animations */
.carousel-slide {
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    z-index: 2;
}

/* Carousel Indicators - Porto style */
.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.hero-carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-default);
}

.hero-carousel-indicators .indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-carousel-indicators .indicator.active {
    background-color: rgba(255, 255, 255, 0.9);
}

/*
================================================================
PROPERTY CARD COMPONENTS - Según Porto 12.1.0 (Movido desde Blade)
================================================================
*/

/* Property Card Base */
.property-card-modern {
    transition: var(--transition-smooth);
    border-radius: var(--border-radius3x);
}

.property-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-modern-hover);
}

/* Property Image */
.property-image {
    height: 250px;
}

.property-img {
    object-fit: cover;
    transition: var(--transition-default);
}

.property-card-modern:hover .property-img {
    transform: scale(1.05);
}

/* Property Price Badge */
.property-price {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0 0 var(--border-radius2x) 0;
}

/* Property Title Link */
.property-title-link {
    transition: var(--transition-default);
}

.property-card-modern .property-title-link:hover {
    color: var(--primary) !important;
}

/* Operation Badges */
.operation-badge {
    border-radius: var(--border-radius2x);
}

.operation-venta {
    background: var(--mtn-success);
}

.operation-alquiler {
    background: var(--primary);
}

.operation-temporal {
    background: var(--mtn-warning);
    color: var(--dark) !important;
}

.operation-default {
    background: var(--secondary);
}

/* Property Details Button */
.property-details-btn {
    transition: var(--transition-default);
    border-radius: var(--border-radius2x);
}

.property-card-modern .property-details-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/*
================================================================
SEARCH FORM COMPONENTS - Según Porto 12.1.0 (Movido desde Blade)
================================================================
*/

/* Search Form Container */
.hero-search-form {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius3x);
}

/* Search Form Controls */
.search-form-control {
    border-radius: var(--border-radius2x);
    border: 2px solid #e9ecef;
    transition: var(--transition-default);
}

.search-form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-20);
}

/* Search Form Button */
.search-form-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: var(--border-radius2x);
    transition: var(--transition-default);
    box-shadow: var(--shadow-modern);
}

.search-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern-hover);
}

/*
================================================================
FILTER COMPONENTS - Según Porto 12.1.0 (Movido desde Blade)
================================================================
*/

/* Filter Sidebar */
.filter-sidebar {
    background: var(--light);
    border-radius: var(--border-radius3x);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-modern);
}

/* Filter Cards */
.filter-sidebar .card {
    border-radius: var(--border-radius2x);
}

.filter-sidebar .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern-hover);
}

/* Filter Form Controls */
.form-control-modern {
    border-radius: var(--border-radius2x);
    border: 2px solid #e9ecef;
    transition: var(--transition-default);
}

.form-control-modern:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-20) !important;
}

/* Filter Buttons */
.filter-sidebar .btn {
    border-radius: var(--border-radius2x);
    transition: var(--transition-default);
}

.filter-sidebar .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern-hover);
}

.float-wsp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: var(--shadow-modern);
  z-index:9999;
  transition: var(--transition-default);
}

.float-wsp:hover {
	transform: scale(1.1);
	box-shadow: var(--shadow-modern-hover);
	color: #FFF;
	text-decoration: none;
}

.my-float-wsp{
	margin-top:16px;
}

.thumb-info,
.thumb-info .thumb-info-wrapper,
.thumb-info .thumb-info-wrapper:after,
.thumb-info .thumb-info-wrapper > img,
.thumb-info .thumb-info-wrapper > .thumb-info-background {
		border-radius: 0;
}

.portfolio-stripes .owl-item .portfolio-item {
		width: calc(100% + 2px);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info {
		border: none;
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info:hover .thumb-info-wrapper .background-image {
		transform: scale(1.1);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title {
		background: none;
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus {
		opacity: 1;
		width: 30%;
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper {
		height: calc(100vh - 81px);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper::before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		box-shadow: 0 50px 190px 110px #182027;
		z-index: 1;
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper::after {
		background: rgba(10, 12, 36, 0.5);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper .background-image {
		position: absolute;
		top: 0;
		left: 0;
		background-size: cover;
		width: 100%;
		height: 100%;
		transition: ease all 0.3s;
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper .thumb-info-plus {
		opacity: 0;
		position: absolute;
		width: 10%;
		top: 50%;
		left: 50%;
		z-index: 2;
		transform: translate3d(-50%, -50%, 0);
		transition: ease all 0.3s;
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper .thumb-info-plus::before, .portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		top: 50%;
		left: 50%;
		border-top: 1px solid #FFF;
		transform: translate3d(-50%, -50%, 0);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

.portfolio-stripes .owl-item .portfolio-item .thumb-info .thumb-info-wrapper .thumb-info-title {
		background: none;
		bottom: 5.5%;
		left: 5%;
		padding: 0;
		font-size: 2em;
		line-height: 1;
		text-shadow: none;
}

.thumb-info-icons.position-style-1 {
		position: absolute;
		bottom: 5%;
		right: 5%;
		z-index: 2;
}

.thumb-info-icons.position-style-2 {
		position: absolute;
		top: -15px;
		left: 50%;
		z-index: 3;
		transform: translateX(-51%);
}

.thumb-info-icons.position-style-3 {
		position: absolute;
		bottom: 7%;
		right: 2%;
}

.thumb-info-icons .thumb-info-icon {
		display: inline-block;
		padding: 5px 11px;
		border-radius: 20px;
		transition: ease all 0.3s;
}

.thumb-info-icons .thumb-info-icon.love {
		margin-left: 0.2em;
}

.thumb-info-icons .thumb-info-icon i {
		margin-left: 8px;
}

#portfolioDetailLoadMoreWrapper li {
		list-style: none;
		max-height: 318px;
		overflow: hidden;
}

.portfolioDetail-load-more-loader, .portfolioInfiniteScroll-load-more-loader {
		display: none;
		min-height: 132px;
}

.portfolio-detail-item {
		position: relative;
		display: inline-block;
		text-align: center;
		max-width: 360px;
		width: 100%;
		height: 283px;
		min-height: 283px;
		margin: 35px 15px 15px 15px;
		cursor: pointer;
		box-shadow: 0px 0px 49px -21px rgba(0, 0, 0, 0.3);
		transition: box-shadow 0.3s ease;
		z-index: 0;
}

.portfolio-detail-item:hover {
		box-shadow: 0px 0px 49px -21px rgba(0, 0, 0, 0.7);
}

.portfolio-detail-item:hover .thumb-info-icons .thumb-info-icon {
		background-color: #ef4545 !important;
}

.portfolio-detail-item a {
		text-decoration: none !important;
}

.portfolio-detail-item .owl-carousel {
		margin-bottom: 0;
		position: relative;
		width: 100%;
		max-width: 360px;
		min-height: 283px;
}

.portfolio-detail-item .owl-carousel .item-image-wrapper {
		box-shadow: none;
}

.portfolio-detail-item .owl-carousel .item-image {
		margin-top: 0;
}

.portfolio-detail-item .owl-carousel .owl-item {
		width: 100%;
		max-width: 360px;
}

.portfolio-detail-item .owl-carousel .owl-item > div {
		position: relative;
		width: 100%;
		max-width: 360px;
		min-height: 283px;
}

.portfolio-detail-item .owl-carousel .owl-nav button.owl-prev,
.portfolio-detail-item .owl-carousel .owl-nav button.owl-next {
		border: 0 none;
		color: var(--light);
		height: 50px;
		line-height: 38px;
		margin-top: -4px;
		border-radius: 0;
		transition: all 0.3s ease;
}

.portfolio-detail-item .owl-carousel .owl-nav button.owl-prev:before,
.portfolio-detail-item .owl-carousel .owl-nav button.owl-next:before {
		font-family: simple-line-icons;
		content: "\e605";
		font-size: 11px;
}

.portfolio-detail-item .owl-carousel .owl-nav button.owl-next::before {
		font-family: simple-line-icons;
		content: "\e606";
}

.portfolio-detail-item .owl-carousel.show-nav-hover .owl-nav button.owl-prev {
		left: 0;
}

.portfolio-detail-item .owl-carousel.show-nav-hover .owl-nav button.owl-next {
		right: 0;
}

.portfolio-detail-item .sub-item-description {
		display: block;
		left: 0;
		top: 0;
		padding: 0;
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 3;
		overflow: hidden;
		transition: all 0.3s ease;
}

.portfolio-detail-item .sub-item-description:before {
		content: '';
		display: block;
		position: absolute;
		bottom: -10%;
		left: 0;
		width: 100%;
		box-shadow: 0 50px 130px 110px #182027;
		z-index: 1;
		opacity: 0;
		transition: all 0.3s ease;
}

.portfolio-detail-item .sub-item-description h5 {
		transition: all 0.3s ease;
		color: var(--light);
		position: absolute;
		z-index: 2;
		bottom: -100%;
		width: 100%;
		text-align: center;
		left: 0;
		padding-bottom: 25px;
}

.portfolio-detail-item:hover .sub-item-description h5 {
		bottom: 0;
}

.portfolio-detail-item:hover .sub-item-description:before {
		opacity: 1;
}

.portfolio-detail-item .item-image-wrapper {
		background: transparent;
		width: 100%;
		display: inline-block;
		border: none;
		box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.1);
		transition: box-shadow 0.3s ease;
}

.portfolio-detail-item .item-image-wrapper .fa-spin {
		background: transparent none repeat scroll 0 0;
		color: var(--grey-500);
		font-size: 25px;
		left: 50%;
		margin: -13px;
		position: absolute;
		top: 50%;
		z-index: -2;
}

.portfolio-detail-item a:hover .item-image-wrapper {
		box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.4);
}

.portfolio-detail-item .item-image {
		min-height: 283px;
		max-width: 360px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-size: cover;
		z-index: -1;
}

.portfolio-detail-item .item-description {
		display: block;
		padding: 15px 0;
}

.portfolio-detail-item h5 {
		padding: 0;
		margin: 0;
		font-size: 14px;
}

.portfolio-detail-item p {
		padding: 0;
		margin: 0;
		font-size: 12px;
}

@media (max-width: 767px) {
		.portfolio-detail-item {
				margin-left: 0;
				margin-right: 0;
		}
}

#portfolioDetailLoadMore {
		margin: 50px 0px 30px 0px;
		padding: 13px 30px;
		outline: none;
}

#porfolioDetailsAjaxBoxContent .slider-container .hermes .tp-bullet {
		box-shadow: 0 0 0 2px #FFF inset;
}

#porfolioDetailsAjaxBoxContent .slider-container .hermes .tp-bullet:after {
		background-color: var(--light);
		box-shadow: 0 0 1px #FFF;
}

.portfolio-parallax {
		height: 40vh;
}

.portfolio-parallax:before {
		content: '';
		display: block;
		position: absolute;
		background: rgba(10, 12, 36, 0);
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		transition: ease all 300ms;
}

.portfolio-parallax:hover:before {
		background: rgba(10, 12, 36, 0.5);
}

.portfolio-parallax:hover .thumb-info-plus {
		opacity: 1;
		width: 8%;
}

.portfolio-parallax:hover .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

.portfolio-parallax.hidden-plus:before {
		content: none;
}

.portfolio-parallax.hidden-plus .thumb-info-plus {
		display: none;
}

.portfolio-parallax h2 {
		position: absolute;
		bottom: 7%;
		left: 1%;
		padding: 0;
		font-size: 2em;
		line-height: 1;
		margin: 0;
}

.portfolio-parallax .thumb-info-plus {
		opacity: 0;
		position: absolute;
		width: 2%;
		top: 50%;
		left: 50%;
		z-index: 2;
		transform: translate3d(-50%, -50%, 0);
		transition: ease all 0.3s;
}

.portfolio-parallax .thumb-info-plus::before, .portfolio-parallax .thumb-info-plus::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		top: 50%;
		left: 50%;
		border-top: 1px solid #FFF;
		transform: translate3d(-50%, -50%, 0);
}

.portfolio-parallax .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

@media (max-width: 991px) {
		.portfolio-parallax {
				height: 30vh;
		}
		.portfolio-parallax:hover .thumb-info-plus {
				width: 20%;
		}
}

@media (max-width: 767px) {
		.portfolio-parallax {
				height: 25vh;
		}
}

#portfolioGrid {
		margin: 0.5vw;
}

#portfolioGrid li {
		list-style: none;
}

#portfolioGrid.portfolioGridFullNoMargins {
		margin: 0;
}

#portfolioGrid.portfolioGridFullNoMargins .portfolio-grid-item {
		padding: 0;
}

.portfolio-grid-item {
		padding: 0.5vw;
}

.portfolio-grid-item .thumb-info {
		border: none;
}

.portfolio-grid-item .thumb-info:hover .thumb-info-wrapper .thumb-info-background {
		transform: scale(1.1);
}

.portfolio-grid-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title {
		opacity: 1;
		transform: translate3d(-50%, 50%, 0px);
}

.portfolio-grid-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title span {
		opacity: 1;
		transform: translate3d(0, 0, 0);
}

.portfolio-grid-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus {
		opacity: 1;
		width: 30%;
}

.portfolio-grid-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper {
		background-size: cover;
		width: 100%;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-1 {
		height: 33.5vw;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-2 {
		height: 16.25vw;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-3 {
		height: 12.25vw;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-4 {
		height: 19.25vw;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper:after {
		background: rgba(10, 12, 36, 0.5);
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-background {
		position: absolute;
		top: 0;
		left: 0;
		background-size: cover;
		background-position: center;
		width: 100%;
		height: 100%;
		transition: ease all 0.3s;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-title {
		width: 90%;
		background: transparent;
		bottom: 50%;
		left: 50%;
		right: auto;
		opacity: 0;
		text-transform: none;
		margin: 0;
		line-height: 1.4;
		font-size: 30px;
		font-weight: 300 !important;
		text-shadow: none;
		letter-spacing: -1px;
		transition: all 0.3s ease;
		transform: translate3d(-50%, 40%, 0px);
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-title span {
		display: block;
		opacity: 0;
		text-transform: none;
		font-size: 16px;
		transform: translate3d(0, -40%, 0px);
		transition: all 0.3s ease 0.3s;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-plus {
		opacity: 0;
		position: absolute;
		width: 10%;
		top: 50%;
		left: 50%;
		z-index: 2;
		transform: translate3d(-50%, -50%, 0);
		transition: ease all 0.3s;
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-plus::before, .portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		top: 50%;
		left: 50%;
		border-top: 1px solid #FFF;
		transform: translate3d(-50%, -50%, 0);
}

.portfolio-grid-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

@media (max-width: 991px) {
		#portfolioGrid {
				margin: 1.5vw;
		}
		.portfolio-grid-item {
				padding: 1.5vw;
		}
		.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-1 {
				height: 47.5vw;
		}
		.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-2 {
				height: 22.25vw;
		}
		.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-3 {
				height: 20.25vw;
		}
		.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-4 {
				height: 30.25vw;
		}
}

@media (max-width: 767px) {
		#portfolioGrid:not(.portfolioGridFullNoMargins) {
				margin: 0vw;
		}
		#portfolioGrid:not(.portfolioGridFullNoMargins) li:last-child .portfolio-grid-item {
				padding: 4.5vw 4.5vw 4.5vw 4.5vw;
		}
		.portfolio-grid-item {
				padding: 4.5vw 4.5vw 0vw 4.5vw;
		}
		.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-1, .portfolio-grid-item .thumb-info .thumb-info-wrapper.size-2, .portfolio-grid-item .thumb-info .thumb-info-wrapper.size-3, .portfolio-grid-item .thumb-info .thumb-info-wrapper.size-4 {
				height: 50vw;
		}
}

@media (max-width: 576px) {
		.portfolio-grid-item {
				padding: 4.5vw 4.5vw 0vw 4.5vw;
		}
		.portfolio-grid-item .thumb-info .thumb-info-wrapper.size-1, .portfolio-grid-item .thumb-info .thumb-info-wrapper.size-2, .portfolio-grid-item .thumb-info .thumb-info-wrapper.size-3, .portfolio-grid-item .thumb-info .thumb-info-wrapper.size-4 {
				height: 70vw;
		}
}

#portfolioVertical {
		margin: 0;
		padding: 0;
		margin-top: 25px;
}

#portfolioVertical li {
		list-style: none;
		margin-bottom: 25px;
}

@media (max-width: 767px) {
		#portfolioVertical {
				margin-top: 15px;
		}
		#portfolioVertical li {
				margin-bottom: 15px;
		}
}

.portfolio-vertical-item, .horizontal-scroll-item, .portfolio-detail-image-item {
		transition: ease box-shadow 300ms;
}

.portfolio-vertical-item:hover, .horizontal-scroll-item:hover, .portfolio-detail-image-item:hover {
		box-shadow: 0px 0px 59px -16px rgba(0, 0, 0, 0.4);
}

.portfolio-vertical-item .thumb-info, .horizontal-scroll-item .thumb-info, .portfolio-detail-image-item .thumb-info {
		border: none;
		transform: none;
}

.portfolio-vertical-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title, .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title, .portfolio-detail-image-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title {
		opacity: 1;
		transform: translate3d(-50%, 50%, 0px);
}

.portfolio-vertical-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title span, .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title span, .portfolio-detail-image-item .thumb-info:hover .thumb-info-wrapper .thumb-info-title span {
		opacity: 1;
		transform: translate3d(0, 0, 0);
}

.portfolio-vertical-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus, .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus, .portfolio-detail-image-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus {
		opacity: 1;
		width: 30%;
}

.portfolio-vertical-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus::after, .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus::after, .portfolio-detail-image-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

.portfolio-vertical-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus.alternative-size, .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus.alternative-size, .portfolio-detail-image-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus.alternative-size {
		width: 21%;
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper, .horizontal-scroll-item .thumb-info .thumb-info-wrapper, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper {
		transform: none;
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper:after, .horizontal-scroll-item .thumb-info .thumb-info-wrapper:after, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper:after {
		background: rgba(10, 12, 36, 0.5);
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper .thumb-info-title, .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-title, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper .thumb-info-title {
		width: 90%;
		background: transparent;
		bottom: 50%;
		left: 50%;
		right: auto;
		opacity: 0;
		text-transform: none;
		margin: 0;
		line-height: 1.4;
		font-size: 30px;
		font-weight: 300 !important;
		text-shadow: none;
		letter-spacing: -1px;
		transition: all 0.3s ease;
		transform: translate3d(-50%, 40%, 0);
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper .thumb-info-title span, .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-title span, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper .thumb-info-title span {
		display: block;
		opacity: 1;
		text-transform: none;
		font-size: 16px;
		transform: translate3d(0, -40%, 0);
		transition: all 0.3s ease 0.3s;
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper .thumb-info-plus, .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper .thumb-info-plus {
		opacity: 0;
		position: absolute;
		width: 10%;
		top: 50%;
		left: 50%;
		z-index: 2;
		transform: translate3d(-50%, -50%, 0);
		transition: ease all 0.3s;
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper .thumb-info-plus::before, .portfolio-vertical-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after, .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus::before, .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper .thumb-info-plus::before, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		top: 50%;
		left: 50%;
		border-top: 1px solid #FFF;
		transform: translate3d(-50%, -50%, 0);
}

.portfolio-vertical-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after, .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after, .portfolio-detail-image-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

#horizontalScrollBox {
		position: relative;
		width: 100%;
		height: calc( 100vh - 183px);
		overflow-y: hidden;
		overflow-x: scroll;
}

#horizontalScrollBox::-webkit-scrollbar {
		height: 10px;
}

#horizontalScrollBox::-webkit-scrollbar-track {
		background: #e2e2e2;
		border-radius: 10px;
		margin: 18px;
}

#horizontalScrollBox::-webkit-scrollbar-thumb {
		background: #888888;
		border-radius: 10px;
}

#horizontalScrollBox .content {
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		overflow: hidden;
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper {
		display: inline-flex;
		flex: 0 0 auto;
		margin: 20px 0px 20px 20px;
		width: auto;
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper:first-child {
		margin: 20px 0px 20px 0px;
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus {
		opacity: 1;
		width: 30%;
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info:hover .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(90deg);
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info .thumb-info-wrapper img {
		width: auto;
		height: calc( 100vh - 223px);
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus {
		opacity: 0;
		position: absolute;
		width: 10%;
		top: 50%;
		left: 50%;
		z-index: 2;
		transform: translate3d(-50%, -50%, 0);
		transition: ease all 0.3s;
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus::before, #horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		top: 50%;
		left: 50%;
		border-top: 1px solid #FFF;
		transform: translate3d(-50%, -50%, 0);
}

#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info .thumb-info-wrapper .thumb-info-plus::after {
		transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

#horizontalScrollBox .custom-portfolio-navigation {
		position: fixed;
		width: 100vw;
		top: 47%;
		z-index: 10;
		transform: translateY(-50%);
}

#horizontalScrollBox .custom-portfolio-navigation .prev, #horizontalScrollBox .custom-portfolio-navigation .next {
		position: absolute;
		width: 30px;
		height: 80px;
		top: -40px;
		left: 0;
		color: var(--light);
		background-color: #242E39;
		cursor: pointer;
}

#horizontalScrollBox .custom-portfolio-navigation .prev::before, #horizontalScrollBox .custom-portfolio-navigation .next::before {
		position: relative;
		content: "\e605";
		font-family: simple-line-icons;
		top: 27px;
		left: 5px;
}

#horizontalScrollBox .custom-portfolio-navigation .prev:hover, #horizontalScrollBox .custom-portfolio-navigation .next:hover {
		background-color: #252f3a;
}

#horizontalScrollBox .custom-portfolio-navigation .prev.disable-button, #horizontalScrollBox .custom-portfolio-navigation .next.disable-button {
		opacity: 0.5;
}

#horizontalScrollBox .custom-portfolio-navigation .next {
		left: auto;
		right: 0;
}

#horizontalScrollBox .custom-portfolio-navigation .next::before {
		content: "\e606";
		left: 9px;
}

@media (max-width: 991px) {
		#horizontalScrollBox {
				height: auto !important;
				overflow: visible !important;
		}
		#horizontalScrollBox::-webkit-scrollbar {
				width: 0;
		}
		#horizontalScrollBox .content {
				position: static;
				width: 100% !important;
				flex-direction: column;
		}
		#horizontalScrollBox .content .horizontal-scroll-item-wrapper {
				margin: 20px 20px 0px 20px;
		}
		#horizontalScrollBox .content .horizontal-scroll-item-wrapper:first-child {
				margin: 20px 20px 0px 20px;
		}
		#horizontalScrollBox .content .horizontal-scroll-item-wrapper:last-child {
				margin: 20px;
		}
		#horizontalScrollBox .content .horizontal-scroll-item-wrapper .horizontal-scroll-item .thumb-info .thumb-info-wrapper img {
				width: 100%;
				height: auto;
		}
		#horizontalScrollBox .custom-portfolio-navigation {
				display: none;
		}
}

.portfolio-list .portfolio-item {
		margin-bottom: 25px;
}

.mfp-wrap.photography-portfolio-gallery {
		opacity: 0;
		transition: ease opacity 300ms;
}

#photographyLightbox {
		position: absolute;
		width: 100vw;
		height: 100vh;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
}

#photographyLightbox .mfp-close {
		background-color: #242E39;
		color: var(--light);
		top: 0;
		right: 0;
		opacity: 1;
}

#photographyLightbox .mfp-close:hover {
		opacity: 0.7;
}

#photographyLightbox .thumb-gallery {
		position: absolute;
		width: 100vw;
		height: 95vh;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
}

#photographyLightbox .owl-carousel .owl-item > div {
		position: relative;
		height: 95vh;
}

#photographyLightbox .owl-carousel .owl-item > div .img-thumbnail {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		padding: 0;
		border: none;
		background: transparent;
		text-align: center;
		transform: translate3d(-50%, -50%, 0);
}

#photographyLightbox .owl-carousel .owl-item img {
		display: inline-block !important;
		width: auto;
		max-width: 95vw;
		max-height: 90vh;
		box-shadow: 0px 0px 40px -10px #000;
}

#photographyLightbox .owl-carousel .owl-nav button.owl-prev,
#photographyLightbox .owl-carousel .owl-nav button.owl-next {
		border: 0 none;
		border-radius: 0;
		color: var(--light);
		height: 80px;
		line-height: 68px;
		margin-top: -20px;
		transition: all 0.3s ease;
}

#photographyLightbox .owl-carousel .owl-nav button.owl-prev:before,
#photographyLightbox .owl-carousel .owl-nav button.owl-next:before {
		font-family: simple-line-icons;
		content: "\e605";
		font-size: 11px;
}

#photographyLightbox .owl-carousel .owl-nav button.owl-next::before {
		font-family: simple-line-icons;
		content: "\e606";
}

#photographyLightbox #thumbGalleryThumbs {
		width: 98%;
		height: 13vh;
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
}

#photographyLightbox #thumbGalleryThumbs:hover .owl-stage-outer, #photographyLightbox #thumbGalleryThumbs.show-thumbs .owl-stage-outer {
		opacity: 1;
		transform: translateY(0);
}

#photographyLightbox #thumbGalleryThumbs.boxed-thumbs:hover .owl-stage-outer {
		opacity: 1;
		transform: translateY(0);
}

#photographyLightbox #thumbGalleryThumbs.boxed-thumbs .owl-item > div {
		height: 20vh;
}

#photographyLightbox #thumbGalleryThumbs.boxed-thumbs .owl-item > div .img-thumbnail {
		height: 5.3vw;
		overflow: hidden;
		border: none;
		box-shadow: none;
}

#photographyLightbox #thumbGalleryThumbs.boxed-thumbs .owl-item img {
		width: auto;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
}

#photographyLightbox #thumbGalleryThumbs.full-proportion-thumbs:hover .owl-stage-outer {
		opacity: 1;
		transform: translateY(-32%);
}

#photographyLightbox #thumbGalleryThumbs.full-proportion-thumbs .owl-item.active-thumb {
		opacity: 0.5;
}

#photographyLightbox #thumbGalleryThumbs.full-proportion-thumbs .owl-item > div {
		height: 20vh;
}

#photographyLightbox #thumbGalleryThumbs.full-proportion-thumbs .owl-item > div .img-thumbnail {
		border: none;
		box-shadow: none;
		overflow: visible;
}

#photographyLightbox #thumbGalleryThumbs.full-proportion-thumbs .owl-item img {
		max-height: 20vh;
		box-shadow: none;
		height: auto;
		width: 100%;
}

#photographyLightbox #thumbGalleryThumbs .owl-stage-outer {
		opacity: 0;
		transform: translateY(100%);
		transition: ease all 300ms;
}

#photographyLightbox #thumbGalleryThumbs .owl-stage {
		margin: 0 auto;
}

#photographyLightbox #thumbGalleryThumbs .owl-item.active-thumb {
		opacity: 0.5;
}

#photographyLightbox #thumbGalleryThumbs .owl-item > div {
		height: 20vh;
}

#photographyLightbox #thumbGalleryThumbs .owl-item > div .img-thumbnail {
		height: 5.3vw;
		box-shadow: 0px 0px 50px -10px #000;
		overflow: hidden;
}

#photographyLightbox #thumbGalleryThumbs .owl-item img {
		width: 100%;
		height: auto;
		max-height: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
}

@media (max-width: 991px) {
		#photographyLightbox .thumb-gallery {
				transform: translate3d(-50%, -50%, 0);
		}
		#photographyLightbox .owl-carousel .owl-item img {
				box-shadow: 0px 0px 20px #000;
				max-width: 89vw;
		}
		#photographyLightbox #thumbGalleryThumbs .owl-item img {
				box-shadow: none;
		}
		#photographyLightbox #thumbGalleryThumbs .owl-stage-outer {
				display: none;
		}
}

@media (max-width: 767px) {
		#photographyLightbox .owl-carousel .owl-item img {
				max-width: 80vw;
		}
}

#portfolioSliderWithThumbs {
		margin-top: 0;
}

#portfolioSliderWithThumbs #thumbGalleryDetail {
		height: 600px;
}

#portfolioSliderWithThumbs #thumbGalleryDetail .owl-nav {
		margin-top: 0;
}

#portfolioSliderWithThumbs #thumbGalleryDetail .owl-nav button.owl-prev,
#portfolioSliderWithThumbs #thumbGalleryDetail .owl-nav button.owl-next {
		border: 0 none;
		border-radius: 0;
		color: var(--light);
		height: 80px;
		line-height: 68px;
		margin-top: -20px;
		transition: all 0.3s ease;
}

#portfolioSliderWithThumbs #thumbGalleryDetail .owl-nav button.owl-prev:before,
#portfolioSliderWithThumbs #thumbGalleryDetail .owl-nav button.owl-next:before {
		font-family: simple-line-icons;
		content: "\e605";
		font-size: 11px;
}

#portfolioSliderWithThumbs #thumbGalleryDetail .owl-nav button.owl-next::before {
		font-family: simple-line-icons;
		content: "\e606";
}

#portfolioSliderWithThumbs #thumbGalleryDetail .owl-item > div {
		background-size: cover !important;
		width: 100%;
		height: 600px;
}

#portfolioSliderWithThumbs #thumbGalleryThumbs {
		height: 80px;
}

#portfolioSliderWithThumbs #thumbGalleryThumbs .owl-item.active-thumb {
		opacity: 0.5;
}

#portfolioSliderWithThumbs #thumbGalleryThumbs .owl-item > div {
		background-size: cover !important;
		width: 100%;
		height: 80px;
}


/* Modificando el color del texto en hover en el menú de navegación */
#header .header-nav-main nav > ul > li.open > a,
#header .header-nav-main nav > ul > li.accessibility-open > a,
#header .header-nav-main nav > ul > li:hover > a {
    color: var(--secondary) !important; /* Cambiando el color del texto a secondary */
}

/* =============================================================================
   ADDITIONAL TYPOGRAPHY OVERRIDES - REAL ESTATE THEME
   ========================================================================== */

/* Font Loading Optimization */
.font-loading body {
    visibility: hidden;
}

.font-loaded body {
    visibility: visible;
}

/* Manual de Marca - Especificaciones Exactas */

/* SATOSHI - Tipografía Sans Serif Modernista */
/* Cinco pesos visuales desde Light hasta Black */
.satoshi-light { font-family: 'Satoshi', Arial, sans-serif !important; font-weight: 300; }
.satoshi-regular { font-family: 'Satoshi', Arial, sans-serif !important; font-weight: 400; }
.satoshi-medium { font-family: 'Satoshi', Arial, sans-serif !important; font-weight: 500; }
.satoshi-bold { font-family: 'Satoshi', Arial, sans-serif !important; font-weight: 700; }
.satoshi-black { font-family: 'Satoshi', Arial, sans-serif !important; font-weight: 900; }

/* MYRIAD VARIABLE - Tipografía Sans Serif Humanista */
/* Diseño informal, inspirada en escritura normal */
.myriad-light { font-family: 'Myriad Pro', Arial, sans-serif !important; font-weight: 300; }

/* Override para clases específicas encontradas en vistas */
.dm-sans-font {
    font-family: 'Satoshi', Arial, sans-serif !important;
}

.word-rotator {
    font-family: 'Satoshi', Arial, sans-serif !important;
}

/* =============================================================================
   HEADER - BOTÓN VER PROPIEDADES
   ========================================================================== */

/* Botón Ver Propiedades en Header */
.btn-modern.btn-primary.btn-outline {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 2px solid var(--mtn-primary);
    color: var(--mtn-primary);
    background: transparent;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius2x);
    transition: var(--transition-default);
    box-shadow: var(--shadow-modern);
}

.btn-modern.btn-primary.btn-outline:hover {
    background: var(--mtn-primary);
    color: white;
    border-color: var(--mtn-primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-modern-hover);
}

.btn-arrow-effect-1 i {
    transition: transform 0.3s ease;
}

.btn-arrow-effect-1:hover i {
    transform: translateX(3px);
}

/* Animación específica para el botón */
.anim-hover-translate-right-5px {
    transition: transform 0.2s ease;
}

.anim-hover-translate-right-5px:hover {
    transform: translateX(5px);
}

.transition-2ms {
    transition-duration: 200ms;
}

/* Responsive para el botón */
@media (max-width: 767px) {
    .btn-modern.btn-primary.btn-outline {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .btn-modern.btn-primary.btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Asegurar que el botón no se corte en pantallas medianas */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-nav .btn-modern {
        margin-left: 1rem;
        margin-right: 0.5rem;
    }
}

/* Real Estate Specific Typography */

/* Hero Section */
.hero-section h1,
.hero-section .hero-title {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-section p,
.hero-section .hero-subtitle {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
    line-height: 1.6;
}

/* Property Listings */
.property-grid .property-item h3,
.property-list .property-title {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
    font-size: 1.25rem;
}

.property-price {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 700;
    color: var(--primary);
}

.property-location,
.property-details {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
}

/* Contact Section */
.contact-section h2,
.contact-form h3 {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
}

.contact-form .form-label {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
}

/* Navigation Improvements */
.header-nav-main nav > ul > li > a {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Footer Typography */
.footer-section h4,
.footer-section h5 {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
}

/* Button Improvements */
.btn-primary,
.btn-secondary,
.btn-outline-primary {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Card Components */
.card .card-title {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
}

.card .card-text {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
    line-height: 1.6;
}

/* Badge and Tags */
.badge,
.property-tag,
.feature-tag {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonial-text {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
}

/* CTA Sections */
.cta-section h2,
.cta-section h3 {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 700;
}

.cta-section p {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
}

/* Property Features List */
.features-list li,
.amenities-list li {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
}

/* Statistics and Numbers */
.stats-number,
.counter-number {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 700;
}

.stats-label,
.counter-label {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Específicos para clases encontradas en las vistas */

/* About page y otras vistas */
.font-weight-bold.text-8,
.word-rotator.slide {
    font-family: 'Satoshi', Arial, sans-serif !important;
}

.lead {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
}

/* Services */
.card-title.alternative-font-4 {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
}

.custom-read-more {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
}

/* Custom font sizes manteniendo las familias correctas */
.custom-font-size-1,
.custom-hero-font-1 {
    font-family: 'Satoshi', Arial, sans-serif !important;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .property-title {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Font Display Optimization */
@media (max-width: 480px) {
    * {
        font-size: 14px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }

    /* Asegurar que el texto destacado en el hero mantenga el tamaño correcto */
.hero-section h1 .text-primary {
    font-size: inherit !important;
}

/* Estilos específicos para header transparente en página About */
.header-transparent .header-nav-main nav > ul > li > a {
    color: #fff !important;
}

.header-transparent .header-nav-main nav > ul > li > a:hover,
.header-transparent .header-nav-main nav > ul > li.open > a,
.header-transparent .header-nav-main nav > ul > li.active > a {
    color: var(--primary) !important;
}

.header-transparent .header-nav-top .nav > li > a {
    color: #fff !important;
}

.header-transparent .header-nav-top .nav > li > a:hover {
    color: var(--primary) !important;
}

.header-transparent .header-social-icons .social-icons a {
    color: #fff !important;
}

.header-transparent .header-social-icons .social-icons a:hover {
    color: var(--primary) !important;
}

/* Asegurar que el logo sea visible en header transparente */
.header-transparent .header-logo img {
    filter: brightness(0) invert(1);
}

/* Cuando el header se vuelve sticky, restaurar colores normales */
html.sticky-header-active .header-transparent .header-nav-main nav > ul > li > a {
    color: inherit !important;
}

html.sticky-header-active .header-transparent .header-nav-top .nav > li > a {
    color: inherit !important;
}

html.sticky-header-active .header-transparent .header-social-icons .social-icons a {
    color: inherit !important;
}

html.sticky-header-active .header-transparent .header-logo img {
    filter: none;
}
}

/* Special Elements for Real Estate */
.price-range,
.property-size,
.property-bedrooms {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 600;
}

.property-description,
.listing-description {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
    line-height: 1.7;
}

/* Loading States */
.loading-text {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
}

/* Error States */
.error-message,
.alert {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
    font-weight: 300;
}

/* Success States */
.success-message {
    font-family: 'Satoshi', Arial, sans-serif !important;
    font-weight: 500;
}

/* Asegurar que los títulos de mayor jerarquía usen Satoshi */
.text-8, .text-7, .text-6 {
    font-family: 'Satoshi', Arial, sans-serif !important;
}

/* Overrides finales para asegurar aplicación completa */
body, html {
    font-family: 'Myriad Pro', Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', Arial, sans-serif !important;
}

/* ======================================================================
   INMOBILIARIA MTN - SERVICIOS DELUXE DESIGN SYSTEM
   Solo CSS esencial para páginas de servicios
   ====================================================================== */

/* Variables específicas para servicios inmobiliarios */
:root {
    --inmob-primary: #E09B36;
    --inmob-secondary: #2C3E50;
    --inmob-light: #F8F9FA;
    --inmob-dark: #212529;
    --inmob-gold: #FFD700;
    --inmob-shadow: 0 4px 15px rgba(224, 155, 54, 0.15);
    --inmob-shadow-hover: 0 8px 25px rgba(224, 155, 54, 0.25);
}

/* ==========================================
   PÁGINA PRINCIPAL DE SERVICIOS
   ========================================== */

/* Grid de servicios principal */
.services-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Card de servicio profesional */
.service-card-professional {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--inmob-shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(224, 155, 54, 0.1);
    min-height: 200px;
}

.service-card-professional:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--inmob-shadow-hover);
    border-color: var(--inmob-primary);
}

.service-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--inmob-primary), transparent);
    transition: left 0.6s ease;
}

.service-card-professional:hover::before {
    left: 100%;
}

/* Contenido interno de la card */
.service-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Header del servicio */
.service-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--inmob-light);
    padding-bottom: 1rem;
}

.service-title {
    color: var(--inmob-secondary);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-card-professional:hover .service-title {
    color: var(--inmob-primary);
}

/* Contenido del servicio */
.service-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 400;
}

/* Footer del servicio */
.service-footer {
    margin-top: auto;
}

.service-footer .btn {
    border-radius: 8px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.service-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-footer .btn:hover::before {
    left: 100%;
}

.service-footer .btn:hover {
    background: var(--inmob-primary);
    border-color: var(--inmob-primary);
    color: white;
    transform: translateY(-2px);
}

/* Badge numerado */
.service-number-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--inmob-primary), var(--inmob-gold));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(224, 155, 54, 0.4);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Call to Action Section */
.call-to-action-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(224, 155, 54, 0.2);
}

.cta-box {
    background: linear-gradient(135deg, rgba(224, 155, 54, 0.05) 0%, rgba(224, 155, 54, 0.1) 100%);
    border: 2px solid rgba(224, 155, 54, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--inmob-primary), var(--inmob-gold), var(--inmob-primary));
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-actions .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, var(--inmob-primary), var(--inmob-gold));
    border: none;
    box-shadow: 0 4px 15px rgba(224, 155, 54, 0.3);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 155, 54, 0.4);
}

/* ==========================================
   PÁGINA DE DETALLE DE SERVICIOS
   ========================================== */

/* Sección de beneficios */
.service-benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid rgba(224, 155, 54, 0.1);
    position: relative;
}

.service-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--inmob-primary), var(--inmob-gold), var(--inmob-primary));
    border-radius: 16px 16px 0 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(224, 155, 54, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--inmob-primary), var(--inmob-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 155, 54, 0.15);
    border-color: var(--inmob-primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--inmob-primary);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--inmob-secondary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Timeline de proceso */
.service-process-section {
    margin: 4rem 0;
}

.process-timeline {
    position: relative;
    margin-top: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(to bottom, var(--inmob-primary), var(--inmob-gold));
    border-radius: 2px;
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-left: 1rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--inmob-primary), var(--inmob-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(224, 155, 54, 0.3);
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.05);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--inmob-secondary);
    margin-bottom: 0.8rem;
}

.step-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* FAQ específica del servicio */
.service-faq-section {
    background: white;
    padding: 3rem;
    border: 1px solid rgba(224, 155, 54, 0.1);
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
}

.service-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--inmob-primary), var(--inmob-gold), var(--inmob-primary));
    border-radius: 16px 16px 0 0;
}

.faq-service-specific {
    margin-top: 2rem;
}

.faq-item-service {
    border-bottom: 1px solid rgba(224, 155, 54, 0.2);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.faq-item-service:last-child {
    border-bottom: none;
}

.faq-item-service:hover {
    background: rgba(224, 155, 54, 0.02);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.faq-question-service {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--inmob-secondary);
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    transition: color 0.3s ease;
}

.faq-question-service:hover {
    color: var(--inmob-primary);
}

.faq-question-service::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--inmob-primary);
    transition: transform 0.3s ease;
    font-weight: 700;
}

.faq-question-service:hover::after {
    transform: rotate(45deg);
}

.faq-answer-service {
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--inmob-primary);
    background: rgba(224, 155, 54, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 8px 8px 0;
}

/* ==========================================
   SIDEBAR SERVICIOS
   ========================================== */

.service-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224, 155, 54, 0.1);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--inmob-primary);
    position: relative;
    color: var(--inmob-secondary);
    font-weight: 700;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--inmob-gold);
}

/* Lista de servicios en sidebar */
.services-list-widget {
    background: white;
    padding: 2rem;
}

.services-list-sidebar {
    margin: 0;
    padding: 0;
}

.service-item-sidebar {
    margin-bottom: 0.5rem;
}

.service-item-sidebar:last-child {
    margin-bottom: 0;
}

.service-link-sidebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--inmob-secondary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-link-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 155, 54, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-link-sidebar:hover::before {
    left: 100%;
}

.service-link-sidebar:hover {
    background: rgba(224, 155, 54, 0.05);
    border-color: var(--inmob-primary);
    color: var(--inmob-secondary);
    transform: translateX(5px);
    text-decoration: none;
}

.service-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.service-arrow {
    color: var(--inmob-primary);
    transition: transform 0.3s ease;
}

.service-link-sidebar:hover .service-arrow {
    transform: translateX(5px);
}

/* Widget de contacto */
.contact-widget .widget-content {
    background: linear-gradient(135deg, rgba(224, 155, 54, 0.05), rgba(224, 155, 54, 0.1)) !important;
    border: 1px solid var(--inmob-primary);
    padding: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-method i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    margin-right: 1rem;
    color: var(--inmob-primary);
}

.contact-label {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-value {
    font-weight: 600;
    text-decoration: none;
    color: var(--inmob-secondary);
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--inmob-primary) !important;
    text-decoration: none;
}

/* Widget de confianza */
.trust-widget .widget-content {
    text-align: center;
    background: white;
    padding: 2rem;
}

.trust-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-icon {
    margin-bottom: 1rem;
}

.trust-icon i {
    color: var(--inmob-primary);
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon i {
    transform: scale(1.1);
}

.trust-number {
    color: var(--inmob-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: block;
}

.trust-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA final del servicio */
.cta-service-section {
    background: linear-gradient(135deg, rgba(224, 155, 54, 0.05), rgba(224, 155, 54, 0.1)) !important;
    border-top: 3px solid var(--inmob-primary);
    position: relative;
}

.cta-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(224, 155, 54, 0.02) 50%, transparent 51%);
    pointer-events: none;
}

.cta-service-section .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cta-service-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-service-section .btn:hover::before {
    left: 100%;
}

.cta-service-section .btn-primary {
    background: linear-gradient(135deg, var(--inmob-primary), var(--inmob-gold));
    border: none;
    box-shadow: 0 4px 15px rgba(224, 155, 54, 0.3);
}

.cta-service-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 155, 54, 0.4);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 991px) {
    .services-grid-professional {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        margin-right: 1rem;
    }

    .service-benefits-section,
    .service-faq-section {
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid-professional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-inner {
        padding: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .cta-service-section .col-lg-4 {
        text-align: center !important;
        margin-top: 2rem;
    }

    .cta-service-section .btn {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .service-card-inner {
        padding: 1.25rem;
    }

    .service-benefits-section,
    .service-faq-section,
    .contact-widget .widget-content,
    .trust-widget .widget-content {
        padding: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .service-number-badge {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        top: 1rem;
        right: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .widget-title {
        font-size: 1.1rem;
    }
}

/* ==========================================
   ANIMACIONES Y EFECTOS ESPECIALES
   ========================================== */

/* Efecto de carga para las cards */
.service-card-professional {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card-professional:nth-child(1) { animation-delay: 0.1s; }
.service-card-professional:nth-child(2) { animation-delay: 0.2s; }
.service-card-professional:nth-child(3) { animation-delay: 0.3s; }
.service-card-professional:nth-child(4) { animation-delay: 0.4s; }
.service-card-professional:nth-child(5) { animation-delay: 0.5s; }
.service-card-professional:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Utilidades específicas */
.text-inmob-primary {
    color: var(--inmob-primary) !important;
}

.text-inmob-secondary {
    color: var(--inmob-secondary) !important;
}

.bg-inmob-primary {
    background-color: var(--inmob-primary) !important;
}

.bg-inmob-light {
    background-color: var(--inmob-light) !important;
}

.border-inmob-primary {
    border-color: var(--inmob-primary) !important;
}

/* Fin del CSS específico para servicios */

/* ======================================================================
   OCULTAR RECAPTCHA BADGE
   ====================================================================== */

/* Ocultar el badge de reCAPTCHA que aparece en la esquina inferior derecha */
.grecaptcha-badge {
    visibility: hidden !important;
    display: none !important;
}

/* Alternativa más específica para diferentes versiones de reCAPTCHA */
iframe[src*="recaptcha"] {
    display: none !important;
}

/* Para reCAPTCHA v3 */
.grecaptcha-badge {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Asegurarse de que no interfiera con el layout */
body {
    overflow-x: hidden;
}

/* Fin CSS reCAPTCHA */

/* ========================================
   PROPIEDADES - EXTENSIONES MÍNIMAS PARA PORTO REAL ESTATE
   ======================================== */

/* Thumb Gallery Porto - Estilos complementarios */
.thumb-gallery-wrapper .thumbnail-porto {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumb-gallery-wrapper .thumbnail-porto:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--primary-rgba-30);
}

.thumb-gallery-wrapper .owl-item.selected .thumbnail-porto {
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-rgba-40);
}

/* Owl Carousel Navigation para galería */
.thumb-gallery-detail .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.thumb-gallery-detail .owl-nav .owl-prev,
.thumb-gallery-detail .owl-nav .owl-next {
    position: absolute;
    background: var(--warning) !important;
    color: white !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 41px;
    text-align: center;
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 16px;
}

.thumb-gallery-detail .owl-nav .owl-prev {
    left: 15px;
}

.thumb-gallery-detail .owl-nav .owl-next {
    right: 15px;
}

.thumb-gallery-detail .owl-nav .owl-prev:hover,
.thumb-gallery-detail .owl-nav .owl-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive para thumbnails */
@media (max-width: 767px) {
    .thumb-gallery-thumbs .owl-item {
        margin-right: 8px;
    }

    .thumbnail-porto {
        height: 60px !important;
    }

    .property-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   PROPIEDADES - EXTENSIONES MÍNIMAS PARA PORTO REAL ESTATE
   ======================================== */

/* Botones Modernos - Estandarización completa */
.btn-modern {
    border-radius: var(--border-radius2x);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-modern.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--quaternary);
}

.btn-modern.btn-primary:hover {
    background: var(--primary-100);
    border-color: var(--primary-100);
    color: var(--quaternary);
    box-shadow: 0 8px 25px var(--primary-rgba-30);
}

.btn-modern.btn-success {
    background: #28a745;
    border-color: #28a745;
    color: var(--quaternary);
}

.btn-modern.btn-success:hover {
    background: #1e7e34;
    border-color: #1e7e34;
    color: var(--quaternary);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-modern.btn-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: var(--dark);
    font-weight: 700;
}

.btn-modern.btn-warning:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-modern.btn-quaternary {
    background: var(--quaternary);
    border-color: var(--quaternary);
    color: var(--dark);
}

.btn-modern.btn-quaternary:hover {
    background: var(--quaternary-100);
    border-color: var(--quaternary-100);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Property Features Header - Mejora de contraste */
.property-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.property-features .feature-item {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.property-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Form Controls Modern */
.form-control-modern {
    border-radius: var(--border-radius2x);
    border: 2px solid var(--light-200);
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary-rgba-20);
    background-color: var(--quaternary);
}

/* Custom Card Info Improvements */
.custom-card-info-header {
    transition: all 0.3s ease;
}

/* Thumb Gallery Porto - Estilos complementarios */
.thumb-gallery-wrapper .thumbnail-porto {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumb-gallery-wrapper .thumbnail-porto:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--primary-rgba-30);
}

.thumb-gallery-wrapper .owl-item.selected .thumbnail-porto {
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-rgba-40);
}

/* Owl Carousel Navigation para galería */
.thumb-gallery-detail .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.thumb-gallery-detail .owl-nav .owl-prev,
.thumb-gallery-detail .owl-nav .owl-next {
    position: absolute;
    background: var(--warning) !important;
    color: white !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 41px;
    text-align: center;
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 16px;
}

.thumb-gallery-detail .owl-nav .owl-prev {
    left: 15px;
}

.thumb-gallery-detail .owl-nav .owl-next {
    right: 15px;
}

.thumb-gallery-detail .owl-nav .owl-prev:hover,
.thumb-gallery-detail .owl-nav .owl-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive para thumbnails */
@media (max-width: 767px) {
    .thumb-gallery-thumbs .owl-item {
        margin-right: 8px;
    }

    .thumbnail-porto {
        height: 60px !important;
    }

    .property-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-modern {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Mejoras adicionales */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-color-default {
    color: var(--default) !important;
}

/* Shadows consistentes */
.shadow-modern {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08) !important;
}

.shadow-modern:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12) !important;
}

/* FIN ARCHIVO CSS OPTIMIZADO */

