
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Montserrat', Arial, sans-serif;
 }
 
 .header {
     background-color: #01253b;
     color: white;
     padding: 30px 0 25px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     border-bottom: 4px solid #a76744;
 }
 
 .header::after {
     content: "";
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 100%;
     height: 4px;
     background-color: #a76744;
 }
 
 .column {
     flex: 1;
     padding: 0 30px;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeIn 0.8s forwards;
 }
 
 .left-column {
     animation-delay: 0.2s;
 }
 
 .center-column {
     animation-delay: 0.4s;
 }
 
 .right-column {
     animation-delay: 0.6s;
 }
 
 @keyframes fadeIn {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
 .left-column {
     text-align: left;
     font-size: 22px;
     font-weight: 600;
     letter-spacing: 0.5px;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
 }
 
 .center-column {
     text-align: center;
     position: relative;
     padding: 0 40px;
 }
 
 .center-column::before {
     content: "";
     display: block;
     width: 80px;
     height: 3px;
     background-color: #a76744;
     margin: 0 auto 15px;
     box-shadow: 0 2px 4px rgba(167, 103, 68, 0.4);
 }
 
 .center-column p {
     font-style: italic;
     margin: 0;
     font-size: 18px;
     line-height: 1.4;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
     position: relative;
 }
 
 .center-column p::after {
     content: "»";
     color: #a76744;
     margin-left: 8px;
     font-weight: bold;
 }
 
 .center-column p::before {
     content: "«";
     color: #a76744;
     margin-right: 8px;
     font-weight: bold;
 }
 
 .right-column {
     text-align: right;
 }
 
 .ranch-name {
     font-weight: 800;
     font-size: 28px;
     color: white;
     margin: 0;
     letter-spacing: 1px;
     text-transform: uppercase;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     position: relative;
     display: inline-block;
 }
 
 .ranch-name::after {
     content: "";
     position: absolute;
     bottom: -5px;
     right: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, transparent, #a76744, transparent);
 }
 
 .for-sale {
     color: #a76744;
     font-size: 20px;
     margin: 10px 0 0;
     font-weight: bold;
     letter-spacing: 1px;
     animation: pulse 2s infinite;
     display: inline-block;
 }
 
 @keyframes pulse {
     0% { transform: scale(1); }
     50% { transform: scale(1.05); }
     100% { transform: scale(1); }
 }
 
 /* Responsive */
 @media (max-width: 768px) {
     .header {
         flex-direction: column;
         padding: 20px 0;
         text-align: center;
     }
     
     .column {
         padding: 10px 20px;
         text-align: center !important;
     }
     
     .center-column::before {
         margin: 10px auto;
     }
     
     .ranch-name::after {
         width: 50%;
         left: 25%;
     }
     
     center-column p, .ranch-name {
         font-size: 22px;
     }
     
.left-column, .center-column p, .ranch-name {
         font-size: 27px;
     }
     .for-sale {
         font-size: 18px;
     }
 }
 
 /* Sección Aérea Mejorada */
 .hero-section {
     position: relative;
     width: 100%;
     height: 100vh; /* Cambiado a 100vh para ocupar toda la pantalla */
     min-height: 700px; /* Aumentado para más impacto */
     overflow: hidden;
     margin: 0;
     padding: 0;
 }
 
 .hero-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     filter: brightness(0.6);
     transform: scale(1.1); /* Zoom inicial para efecto dramático */
     transition: transform 12s ease-out, filter 4s ease;
 }
 
 .hero-section:hover .hero-image {
     transform: scale(1.15);
     filter: brightness(0.7);
 }
 
 .hero-content {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     width: 100%;
     padding: 0 20px;
     z-index: 2;
 }
 
 .hero-title {
     color: white;
     font-size: clamp(55px, 8vw, 80px); /* Tamaño responsivo mejorado */
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: 6px; /* Aumentado para más elegancia */
     margin-bottom: 30px; /* Más espacio */
     text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.7);
     opacity: 0;
     transform: translateY(40px);
     animation: heroTitleFadeIn 1.8s 0.5s forwards cubic-bezier(0.215, 0.610, 0.355, 1.000);
     line-height: 1.2;
 }
 
 @keyframes heroTitleFadeIn {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
 .hero-subtitle {
     color: #f8b45c; /* Color más dorado para más contraste */
     font-size: clamp(18px, 2.2vw, 28px);
     font-weight: 600;
     letter-spacing: 3px;
     max-width: 800px;
     margin: 0 auto;
     opacity: 0;
     transform: translateY(30px);
     animation: heroSubtitleFadeIn 1.8s 1s forwards;
     text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
     padding: 15px 30px;
     background: rgba(1, 37, 59, 0.4); /* Fondo semitransparente */
     border-left: 3px solid #a76744;
     border-right: 3px solid #a76744;
 }
 
 @keyframes heroSubtitleFadeIn {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
.hero-overlay {
background: linear-gradient(
 to bottom, 
 rgba(1, 37, 59, 0.2) 0%, 
 rgba(1, 37, 59, 0.4) 50%, 
 rgba(1, 37, 59, 0.6) 100%
);
}
 
 .hero-scroll-indicator {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     color: white;
     font-size: 16px;
     opacity: 0;
     animation: fadeIn 2s 2s forwards, bounce 2s infinite 3s;
     z-index: 2;
     display: flex;
     flex-direction: column;
     align-items: center;
 }
 
 .scroll-arrow {
     margin-top: 10px;
     animation: bounceArrow 1.5s infinite;
 }
 
 @keyframes bounceArrow {
     0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
     40% {transform: translateY(-10px);}
     60% {transform: translateY(-5px);}
 }
 
 /* Efecto de partículas decorativas */
 .particles {
     position: absolute;
     width: 100%;
     height: 100%;
     z-index: 1;
     overflow: hidden;
 }
 
 .particle {
     position: absolute;
     background-color: rgba(167, 103, 68, 0.6);
     border-radius: 50%;
     animation: float linear infinite;
 }
 
 @keyframes float {
     to {
         transform: translateY(-100vh);
     }
 }
 
 /* Responsive */
 @media (max-width: 1200px) {
     .hero-section {
         min-height: 600px;
     }
 }
 
 @media (max-width: 768px) {
     .hero-section {
         height: 90vh;
         min-height: 500px;
     }
     
     .hero-title {
         letter-spacing: 3px;
         font-size: 42px;
         margin-bottom: 20px;
     }
     
     .hero-subtitle {
         font-size: 18px;
         letter-spacing: 2px;
         padding: 10px 15px;
     }
     
     .hero-scroll-indicator {
         bottom: 30px;
         font-size: 14px;
     }
 }


/* **********  Sección de características */

.features-section {
margin-top: 80px;  /* Ajusta este valor según cuánto quieras que suba */

z-index: 3;        /* Asegura que esté por encima de otras capas */
background-color: transparent; /* Opcional: si quieres ver parte de la foto */
}

.features-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(90deg, #01253b, #a76744, #01253b);
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
width: 80%; /* Cambiamos max-width por width */
margin: 80px auto; /* Centrado automático horizontal */
padding: 0 20px;
}

@media (min-width: 600px) {
.feature-grid {
/* Tablet: 2 columnas exactas */
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {
.feature-grid {
/* Tablet: 2 columnas exactas */
grid-template-columns: repeat(4, 1fr);
}
}

.feature-card {
background: white;
border-radius: 8px;
padding: 30px 25px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: transform 0.4s ease, box-shadow 0.4s ease;
position: relative;
overflow: hidden;
z-index: 1;
}

.feature-card::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #01253b, #a76744);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::after {
transform: scaleX(1);
}

.feature-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(167, 103, 68, 0.1);
border-radius: 50%;
transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
transform: rotateY(180deg);
}

.feature-card h3 {
color: #01253b;
font-size: 22px;
margin-bottom: 15px;
font-weight: 700;
letter-spacing: 1px;
}

.feature-card p {
color: #555;
font-size: 16px;
line-height: 1.6;
margin-bottom: 20px;
}

.feature-line {
width: 50px;
height: 2px;
background: linear-gradient(90deg, transparent, #a76744, transparent);
margin: 0 auto;
transition: width 0.4s ease;
}

.feature-card:hover .feature-line {
width: 100px;
}

/* Responsive */
@media (max-width: 768px) {
.feature-grid {
 grid-template-columns: 1fr;
 width: 100%;
}

.feature-card {
 padding: 25px 20px;
}
}


/* Sección de información con foto horizontal - Versión modificada */
.info-section {
background-color: #f5f5f5;
margin: 60px 0;
position: relative;
overflow: hidden;
}

.info-image {
width: 100%;
height: 400px;
overflow: hidden;
}

.info-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: brightness(0.8);
transition: transform 8s ease-out;
}

.info-section:hover .info-image img {
transform: scale(1.05);
}

.info-content {
width: 90%;
margin: 80px auto;
padding: 40px 20px;
}

.info-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}

.info-left h2 {
color: #01253b;
font-size: 32px;
margin-bottom: 25px;
position: relative;
padding-bottom: 15px;
}

.info-left h2::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 3px;
background-color: #a76744;
}

.info-left {
align-content: center;
}

.info-left p {
color: #555;
font-size: 18px;
line-height: 1.6;
margin-bottom: 20px;
}

/* Contenedor de ventajas con fondo del menú */
.advantages-container {
background-color: #01253b;
padding: 30px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantages-container h3 {
color: white;
font-size: 28px;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}

.advantages-container h3::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: #a76744;
}

.advantage-item {
margin-bottom: 25px;
padding-left: 20px;
border-left: 3px solid #a76744;
}

.advantage-item h4 {
color: #f8b45c; /* Dorado claro para mejor contraste */
font-size: 22px;
margin-bottom: 10px;
text-transform: uppercase;
}

.advantage-item p {
color: #e0e0e0; /* Texto claro sobre fondo oscuro */
font-size: 16px;
line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
.info-image {
 height: 350px;
}
}

@media (max-width: 768px) {
.info-image {
 height: 300px;
}

.info-columns {
 grid-template-columns: 1fr;
 gap: 40px;
}

.advantages-container {
 padding: 25px;
}
}

@media (max-width: 576px) {
.info-image {
 height: 250px;
}

.info-left h2 {
 font-size: 28px;
}

.advantages-container h3 {
 font-size: 24px;
}

.advantage-item h4 {
 font-size: 20px;
}
}



/* Estilos para la sección de imagen panorámica */

.info-section-panoramica {
background-color: #f5f5f5;
margin: 60px 0;
position: relative;
overflow: hidden;
text-align: center; /* Para centrar el contenido */
}

.panoramic-image {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto; /* Centrado */
}


 /* Estilos para el botón de zoom */
 .zoom-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60px;
     height: 60px;
     background: rgba(167, 103, 68, 0.9);
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
     z-index: 2;
     opacity: 0.8;
 }

 .zoom-button:hover {
     background: #a76744;
     opacity: 1;
 }

 .zoom-button svg {
     width: 30px;
     height: 30px;
     fill: white;
 }

 /* Estilos para el modal */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(1, 37, 59, 0.95);
     z-index: 1000;
     overflow: hidden;
 }

 .modal-content {
     width: 90%;
     height: 90%;
     margin: 2% auto;
     position: relative;
     overflow: auto;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .zoomable-image {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     cursor: grab;
     transition: transform 0.3s ease;
     transform-origin: center center;
 }

 .zoomable-image:active {
     cursor: grabbing;
 }

 .close-btn {
     position: absolute;
     top: 20px;
     right: 30px;
     color: white;
     font-size: 40px;
     font-weight: bold;
     cursor: pointer;
     z-index: 1001;
     transition: all 0.3s ease;
 }

 .close-btn:hover {
     color: #a76744;
     transform: scale(1.1);
 }

 .modal-controls {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 15px;
     z-index: 1001;
 }

 .control-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     border: 2px solid white;
     color: white;
     font-size: 20px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .control-btn:hover {
     background: #a76744;
     transform: scale(1.1);
 }

/* ********************************* */
/* CSS */
/* CSS Mejorado */
.infraestructura-section {
background-color: #f5f5f5;
padding: 100px 0;
position: relative;
overflow: hidden;
border-top: 4px solid #a76744;
border-bottom: 4px solid #01253b;
}

.section-title {
text-align: center;
color: #01253b;
font-size: 2.8rem;
margin-bottom: 20px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 3px;
position: relative;
}

.section-title::after {
content: "";
display: block;
width: 100px;
height: 4px;
background: linear-gradient(90deg, #01253b, #a76744);
margin: 20px auto 30px;
}

.section-description {
text-align: center;
color: #555;
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto 50px;
line-height: 1.6;
padding: 0 20px;
}

.infra-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.infra-card {
background: white;
border-radius: 10px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
border-top: 3px solid #a76744;
}

.infra-card-center {
grid-column: span 2;
max-width: 500px;
justify-self: center;
}

.infra-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.infra-icon {
width: 80px;
height: 80px;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(167, 103, 68, 0.1);
border-radius: 50%;
transition: all 0.4s ease;
}

.infra-card:hover .infra-icon {
background: rgba(167, 103, 68, 0.2);
transform: scale(1.1);
}

.infra-card h3 {
color: #01253b;
font-size: 1.5rem;
margin-bottom: 15px;
font-weight: 700;
letter-spacing: 1px;
}

.infra-card p {
color: #666;
font-size: 1.1rem;
line-height: 1.6;
margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
.infra-grid {
 grid-template-columns: 1fr;
}

.infra-card-center {
 grid-column: span 1;
 max-width: 100%;
}

.section-title {
 font-size: 2.2rem;
}

.section-description {
 font-size: 1rem;
}
}

@media (max-width: 576px) {
.infraestructura-section {
 padding: 70px 0;
}

.infra-card {
 padding: 30px 20px;
}
}

/* **************************************** */
/* CSS Mejorado */
.videos-section {
background: linear-gradient(135deg, #01253b 0%, #0a3a5a 100%);
padding: 100px 0;
position: relative;
}

.section-title {
color: #ffffff;
text-align: center;
font-size: 2.8rem;
margin-bottom: 20px;
font-weight: 800;
letter-spacing: 2px;
position: relative;
text-transform: uppercase;
}

.section-title::after {
content: "";
display: block;
width: 80px;
height: 4px;
background: #a76744;
margin: 20px auto 30px;
}

.section-description {
color: rgba(255, 255, 255, 0.85);
text-align: center;
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto 60px;
line-height: 1.8;
padding: 0 20px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 80%;
        margin: 0 auto; /* <-- Esto centra el contenedor */

}

.video-thumbnail {
    flex: 0 0 calc(50% - 1rem);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.video-thumbnail.full-width {
    flex: 0 0 100%;
    margin-top: 2rem;
    max-width: 100%;
}

.video-thumbnail.full-width .video-preview {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-thumbnail:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-preview {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}

.video-thumbnail:hover .video-preview {
transform: scale(1.05);
}

.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(1, 37, 59, 0.8) 0%, transparent 50%);
transition: all 0.4s ease;
}

.video-thumbnail:hover .video-overlay {
background: linear-gradient(to top, rgba(167, 103, 68, 0.7) 0%, transparent 60%);
}

.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(5px);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-thumbnail:hover .play-button {
background: rgba(167, 103, 68, 0.9);
transform: translate(-50%, -50%) scale(1.1);
border-color: rgba(255, 255, 255, 0.5);
}

.play-button svg {
width: 35px;
height: 35px;
margin-left: 5px; /* Ajuste para centrar el triángulo */
}

.video-info {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 25px;
z-index: 2;
}

.video-info h3 {
color: white;
font-size: 1.5rem;
margin-bottom: 8px;
font-weight: 700;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.video-info p {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
margin-bottom: 12px;
line-height: 1.5;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 1px;
backdrop-filter: blur(5px);
}

/* Modal de Video Mejorado */
.video-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(1, 37, 59, 0.98);
z-index: 10000;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.4s ease;
}

.video-modal.show {
display: flex;
opacity: 1;
}

.video-modal-content {
width: 90%;
max-width: 1100px;
position: relative;
border-radius: 12px;
overflow: hidden;
transform: scale(0.95);
transition: transform 0.4s ease;
}

.video-modal.show .video-modal-content {
transform: scale(1);
}

.close-video {
position: absolute;
top: -50px;
right: 0;
color: white;
font-size: 40px;
cursor: pointer;
transition: all 0.3s ease;
z-index: 100;
}

.close-video:hover {
color: #a76744;
transform: rotate(90deg);
}

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
height: 0;
background: #000;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}

.video-modal-info {
background: #01253b;
padding: 25px;
border-top: 4px solid #a76744;
}

.video-modal-info h3 {
color: white;
font-size: 1.6rem;
margin-bottom: 10px;
}

.video-modal-info p {
color: rgba(255, 255, 255, 0.85);
font-size: 1rem;
line-height: 1.6;
margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
.video-gallery {
 grid-template-columns: 1fr 1fr;
}

.section-title {
 font-size: 2.2rem;
}
}

@media (max-width: 768px) {
.video-gallery {
 grid-template-columns: 1fr;
 max-width: 600px;
}

.video-info {
 padding: 20px;
}

.video-info h3 {
 font-size: 1.3rem;
}

.video-modal-info {
 padding: 20px;
}

.video-modal-info h3 {
 font-size: 1.4rem;
}
}

@media (max-width: 480px) {
.videos-section {
 padding: 70px 0;
}

.section-title {
 font-size: 1.8rem;
}

.play-button {
 width: 60px;
 height: 60px;
}

.play-button svg {
 width: 25px;
 height: 25px;
}
}

/* ********************************** */
/* CSS ÚNICO - SIN CONFLICTOS */
.geo-features-section {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
padding: 8rem 0;
position: relative;
border-top: 3px solid #0d3b66;
border-bottom: 3px solid #a76744;
}

.geo-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

.geo-visual-wrapper {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 5rem;
align-items: center;
}

.geo-image-box {
position: relative;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
border: 1px solid #e2e8f0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-image-box:hover {
transform: translateY(-0.5rem);
box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
}

.geo-main-image {
width: 100%;
height: auto;
display: block;
transition: transform 0.6s ease;
}

.geo-image-box:hover .geo-main-image {
transform: scale(1.03);
}

.geo-zoom-trigger {
position: absolute;
bottom: 2rem;
right: 2rem;
width: 4.5rem;
height: 4.5rem;
background: rgba(13, 59, 102, 0.9);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 10;
}

.geo-zoom-trigger:hover {
background: #a76744;
transform: scale(1.1);
}

.geo-zoom-icon {
width: 2.2rem;
height: 2.2rem;
}

.geo-data-panel {
padding: 0 1.5rem;
}

.geo-primary-heading {
color: #0d3b66;
font-size: 2.8rem;
font-weight: 800;
letter-spacing: -0.05rem;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.geo-accent-text {
color: #a76744;
display: block;
font-size: 2.2rem;
font-weight: 700;
margin-top: 0.5rem;
}

.geo-intro-text {
color: #4a5568;
font-size: 1.15rem;
line-height: 1.7;
margin-bottom: 3rem;
max-width: 90%;
}

.geo-feature-list {
list-style: none;
padding: 0;
margin: 0;
}

.geo-feature-item {
display: flex;
gap: 1.5rem;
padding: 1.8rem 0;
border-bottom: 1px dashed #cbd5e0;
align-items: flex-start;
}

.geo-feature-icon {
font-size: 2rem;
color: #a76744;
margin-top: 0.3rem;
flex-shrink: 0;
}

.geo-feature-content {
flex-grow: 1;
}

.geo-feature-title {
color: #0d3b66;
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 0.6rem;
}

.geo-feature-desc {
color: #4a5568;
font-size: 1.05rem;
line-height: 1.6;
margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
.geo-visual-wrapper {
 gap: 3rem;
}

.geo-primary-heading {
 font-size: 2.4rem;
}
}

@media (max-width: 768px) {
.geo-visual-wrapper {
 grid-template-columns: 1fr;
}

.geo-image-box {
 max-width: 700px;
 margin: 0 auto 4rem;
}

.geo-primary-heading {
 font-size: 2.2rem;
}

.geo-feature-item {
 padding: 1.5rem 0;
}
}

@media (max-width: 480px) {
.geo-features-section {
 padding: 6rem 0;
}

.geo-primary-heading {
 font-size: 1.8rem;
}

.geo-feature-item {
 flex-direction: column;
 gap: 0.8rem;
}

.geo-feature-icon {
 font-size: 1.8rem;
}
}

/* ***************************************** */
/* Estilos del Modal - Únicos */
.geo-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(13, 59, 102, 0.95);
z-index: 10000;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.geo-modal.show {
display: flex;
opacity: 1;
}

.geo-modal-content {
position: relative;
width: 90%;
max-width: 900px;
max-height: 90vh;
}

.geo-modal-image {
width: 100%;
height: auto;
max-height: 90vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.geo-modal-close {
position: fixed;
top: 30px;
right: 30px;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
transition: color 0.3s ease;
z-index: 10001;
}

.geo-modal-close:hover {
color: #a76744;
}

/* Efecto de zoom al pasar mouse */
.geo-zoom-trigger {
cursor: zoom-in;
}

/* ***************************** */
/* CSS */
.cta-contact-section {
position: relative;
background: linear-gradient(135deg, #01253b 0%, #0a3a5a 100%);
padding: 100px 20px;
overflow: hidden;
text-align: center;
border-top: 4px solid #a76744;
border-bottom: 4px solid #a76744;
}

.cta-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('img/DJI_015.webp') center/cover;
opacity: 0.15;
z-index: 1;
}

.cta-particle {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 2;
}

.cta-container {
position: relative;
max-width: 800px;
margin: 0 auto;
z-index: 3;
}

.cta-content {
background: rgba(255, 255, 255, 0.95);
padding: 50px 40px;
border-radius: 15px;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
transform: perspective(1000px);
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
color: #01253b;
font-size: 2.8rem;
margin-bottom: 15px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
display: inline-block;
}

.cta-title::after {
content: "";
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #a76744;
}

.cta-subtitle {
color: #555;
font-size: 1.3rem;
margin-bottom: 30px;
line-height: 1.5;
}

.cta-highlight {
display: inline-flex;
align-items: center;
background: rgba(167, 103, 68, 0.15);
color: #a76744;
padding: 12px 25px;
border-radius: 50px;
margin-bottom: 40px;
font-weight: 700;
font-size: 1.1rem;
border: 2px dashed #a76744;
animation: pulseHighlight 2s infinite;
}

.cta-icon {
width: 24px;
height: 24px;
margin-right: 10px;
animation: bounce 2s infinite;
}

.cta-contact-methods {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 500px;
margin: 0 auto 30px;
}

.cta-button {
position: relative;
display: flex;
align-items: center;
text-align: left;
padding: 20px 30px;
border-radius: 10px;
text-decoration: none;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.phone-button {
background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
color: white;
}

.email-button {
background: linear-gradient(135deg, #ea4335 0%, #d14836 100%);
color: white;
}

.cta-button-icon {
font-size: 2rem;
margin-right: 20px;
transition: transform 0.3s ease;
}

.cta-button-text {
flex-grow: 1;
}

.cta-button-label {
display: block;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 5px;
opacity: 0.9;
}

.cta-button-value {
display: block;
font-size: 1.3rem;
font-weight: 700;
}

.cta-button-effect {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
transform: translateX(-100%);
transition: transform 0.6s ease;
}

.cta-button:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover .cta-button-icon {
transform: scale(1.2);
}

.cta-button:hover .cta-button-effect {
transform: translateX(100%);
}

.cta-note {
color: #666;
font-size: 0.9rem;
font-style: italic;
margin-top: 30px;
}

/* Animaciones */
@keyframes pulseHighlight {
0% { transform: scale(1); }
50% { transform: scale(1.03); }
100% { transform: scale(1); }
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-10px); }
60% { transform: translateY(-5px); }
}

/* Efecto partículas (se implementará con JS) */
.cta-particle {
pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
.cta-title {
 font-size: 2rem;
}

.cta-subtitle {
 font-size: 1.1rem;
}

.cta-button {
 padding: 15px 20px;
}

.cta-button-value {
 font-size: 1.1rem;
}
}

@media (max-width: 480px) {
.cta-content {
 padding: 40px 20px;
}

.cta-highlight {
 font-size: 1rem;
 padding: 10px 20px;
}

.cta-button {
 flex-direction: column;
 text-align: center;
}

.cta-button-icon {
 margin-right: 0;
 margin-bottom: 10px;
}
}


/* Estilos para la sección del plano */
.info-section-panoramica {
margin: 80px 0;
position: relative;
}

.info-image-panoramica {
position: relative;
width: 100%;
max-width: 1200px;
margin: 0 auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-image-panoramica img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}

.info-image-panoramica:hover img {
transform: scale(1.02);
}

/* Botón de zoom */
.info-image-panoramica .zoom-button {
position: absolute;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background: rgba(1, 37, 59, 0.9);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.info-image-panoramica .zoom-button:hover {
background: #a76744;

}

.info-image-panoramica .zoom-button svg {
width: 24px;
height: 24px;
fill: white;
}


.info-image-container {
margin: 20px 0;
text-align: center;
}

.image-title {
font-size: 1.5rem;
color: #333;
margin-bottom: 8px;
}

.image-description {
font-size: 1rem;
color: #666;
margin-bottom: 15px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.info-image-panoramica {
position: relative;
display: inline-block;
max-width: 100%;
}

/* Contenedor principal al 90% */
.image-content-container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

/* Efecto hover para todas las imágenes */
.info-image-panoramica, .half-image {
position: relative;
overflow: hidden;
border-radius: 8px;
transition: transform 0.3s;
}

.info-image-panoramica:hover, .half-image:hover {
transform: scale(1.02);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.panoramic-image {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s;
}

.info-image-panoramica:hover .panoramic-image,
.half-image:hover .panoramic-image {
transform: scale(1.05);
}


/* Contenedor 50/50 */

.content-wrapper {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

/* Botón de zoom */
.dual-image-container .zoom-button {
position: absolute;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background: rgba(1, 37, 59, 0.9);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.dual-image-container .zoom-button:hover {
background: #a76744;

}

.dual-image-container .zoom-button svg {
width: 24px;
height: 24px;
fill: white;
}

/* Contenedor padre */
.dual-image-container {
display: flex;
grid-template-columns: repeat(2, 1fr); /* 2 columnas */

gap: 15px;
}

@media (max-width: 768px) {
.dual-image-container {
display: block;
  grid-template-columns: 1fr; /* 1 columna por defecto */
}
}

.half-image {
position: relative;
width: 100%; /* Ocupa todo el ancho disponible */
margin-top: 15px;
}

.location-description {
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
color: #333;
}

.highlight-list {
list-style: none;
padding: 15px 0;
margin: 20px 0;
border-top: 1px solid #e2e8f0;
border-bottom: 1px solid #e2e8f0;
}

.highlight-list li {
padding: 8px 0;
display: flex;
align-items: center;
}

.highlight-list li:before {
content: "✓";
color: #10b981;
margin-right: 10px;
font-weight: bold;
}

.amenities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin: 25px 0;
}

.amenity-item {
background: #f8fafc;
padding: 15px;
border-radius: 8px;
border-left: 4px solid #2563eb;
}

.call-to-action {
font-size: 1.2em;
text-align: center;
color: #2563eb;
font-weight: 600;
margin-top: 30px;
}

/* Sección de Ubicación */
.location-section {
padding: 80px 0;
background-color: #f9f9f9;
position: relative;
overflow: hidden;
}

.location-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(90deg, #01253b, #a76744, #01253b);
}

.location-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.location-map {
height: 900px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
position: relative;
border: 5px solid white;
}

.location-map iframe {
width: 100%;
height: 100%;
border: none;
filter: grayscale(20%) contrast(110%);
transition: all 0.5s ease;
}

.location-map:hover iframe {
filter: grayscale(0%) contrast(100%);
}

.location-image {
height: 900px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
position: relative;
border: 5px solid white;
}

.location-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}

.location-image:hover img {
transform: scale(1.05);
}

.location-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 30px;
background: linear-gradient(to top, rgba(1, 37, 59, 0.8), transparent);
color: white;
}

.location-overlay h3 {
font-size: 28px;
margin-bottom: 10px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.location-overlay p {
font-size: 16px;
line-height: 1.6;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.location-badge {
position: absolute;
top: 20px;
right: 20px;
background-color: #a76744;
color: white;
padding: 8px 15px;
border-radius: 20px;
font-weight: bold;
font-size: 14px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
z-index: 2;
}

/* Efecto de borde decorativo */
.location-map::after,
.location-image::after {
content: '';
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
border: 2px solid rgba(167, 103, 68, 0.3);
border-radius: 15px;
pointer-events: none;
z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
.location-container {
 grid-template-columns: 1fr;
}

.location-map,
.location-image {
 height: 400px;
}
}

@media (max-width: 768px) {
.location-section {
 padding: 60px 0;
}

.location-map,
.location-image {
 height: 350px;
}

.location-overlay h3 {
 font-size: 24px;
}
}

@media (max-width: 576px) {
.location-map,
.location-image {
 height: 700px;
}

.location-overlay {
 padding: 20px;
}

.location-badge {
 top: 10px;
 right: 10px;
 font-size: 12px;
}
}

/* Footer Simplificado */
.simple-footer {
background-color: #01253b;
color: #fff;
padding: 25px 0;
position: relative;
border-top: 3px solid #a76744;
font-family: 'Montserrat', Arial, sans-serif;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}

.footer-text {
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
margin: 0;
line-height: 1.5;
}

.footer-text a {
color: #f8b45c;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.footer-text a:hover {
color: #fff;
text-decoration: underline;
}

/* Efecto de borde superior decorativo */
.simple-footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, #a76744, #01253b, #a76744);
}

/* Responsive */
@media (max-width: 768px) {
.footer-text {
 font-size: 13px;
}
}

/* Estilos del selector de idioma */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-selector button {
    background-color: #01253b;
    color: white;
    border: 2px solid #a76744;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.language-selector button:hover {
    background-color: #a76744;
    border-color: #01253b;
}