/* ==========================================================================
   Variables y Configuración Base
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700&family=Great+Vibes&display=swap');

:root {
    --primary-color: #2b302c;
    --text-color: #4a4a4a;
    --bg-color: #fdfdfd;
    --header-bg: #ffffff;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Ajuste necesario porque nuestro nuevo menú flotante es fixed-top */
    padding-top: 100px;
}


/* ==========================================================================
   Modificaciones sobre Bootstrap para el Header y Navegación
   ========================================================================== */
.main-header {
    /* border-bottom: 1px solid #eaeaea; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    min-height: 100px;
    /* Altura generosa basada en el mockup */
    transition: all 0.3s ease;
    border-radius: 0 0 35px 35px;
    /* Bordes inferiores redondeados */
}

/* Logotipo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
    /* Animación suave al logo */
}

/* Separación entre enlaces de Navegación (visible en PC) */
.main-nav {
    gap: 40px;
}

/* Detalles de los enlaces */
.main-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transition: var(--transition);
    display: inline-block;
}

.main-nav .nav-link:hover {
    color: #000 !important;
}

/* Efecto Hover solo activo en resoluciones grandes (escritorio) para evitar glitches en móvil */
@media (min-width: 992px) {
    .main-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 5px;
        /* Línea separada debajo del texto */
        left: 0;
        background-color: var(--primary-color);
        transition: var(--transition);
    }

    .main-nav .nav-link:hover::after {
        width: 100%;
    }
}

/* Fixes específicos para teléfonos y tablets pequeñas (Offcanvas style) */
@media (max-width: 1201px) {
    .logo img {
        height: 40px;
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }

    .main-header {
        min-height: 80px;
    }

    .offcanvas-end {
        width: 65% !important;
        /* Ancho de la caja similar a la imagen */
        border-left: none;
    }

    .offcanvas-header {
        padding: 30px 40px;
        /* Alineación del botón */
        justify-content: flex-start;
        border-bottom: 1px solid #f2f2f2;
    }

    .custom-close-btn {
        background: none;
        border: none;
        font-size: 16px;
        font-weight: bold;
        color: var(--primary-color);
        cursor: pointer;
        padding: 0;
    }

    .offcanvas-body {
        padding: 0;
    }

    .main-nav {
        gap: 0;
        margin-top: 0;
    }

    .main-nav .nav-item {
        border-bottom: 1px solid #f2f2f2;
        padding: 25px 40px;
        /* Espaciado generoso interior como en la imagen */
    }

    .main-nav .nav-link {
        color: #000 !important;
        padding: 0 !important;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .main-header {
        min-height: 80px;
        /* Bordes inferiores redondeados */
        border-radius: 0 0 20px 20px;
    }

    .logo img {
        height: 30px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
        margin-left: 20px;
    }

    .navbar-brand {
        margin-left: 20px;
    }
}

/* ==========================================================================
   Secciones Principales (Para demostración)
   ========================================================================== */
main {
    min-height: 80vh;
}

/* Reajusté el padding para usar un layout de bootstrap básico */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   Sección: Intro / Ubicación (Estilo Tarjeta)
   ========================================================================== */
.project-intro {
    padding: 0px 20px 80px 20px;
}

.intro-card {
    background-color: #DEE2B0;
    /* Verde salvia claro basado en la imagen */
    border-radius: 30px 0px 30px 30px;
    overflow: hidden;
    /* Esto permite que la imagen también respete los bordes redondeados */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    /* Sombra muy suave para separar del fondo */
}

.intro-img-col {
    position: relative;
    min-height: 400px;
    background-color: #FFF;
}

.intro-img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    position: absolute;
    top: 0;
    left: 0;
}

.intro-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 4%;
    /* Padding proporcional */
    text-align: center;
    color: #243D1D;
    /* Verde oscuro para el texto de párrafos */
}

/* Iconos flotantes a la derecha */
.intro-floating-icons {
    position: absolute;
    right: 0;
    top: 60px;
    /* Altura ajustada a la imagen */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.intro-floating-icons .floating-icon {
    display: block;
    width: clamp(60px, 6vw, 80px);
    /* Responsive width */
    transition: transform 0.3s ease;
}

.intro-floating-icons .floating-icon:hover {
    transform: translateX(-5px);
}

.intro-floating-icons .floating-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.5px;
    margin-bottom: 5px;
    color: #435832;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #27401c;
    /* Verde botella oscuro */
    letter-spacing: 5px;
    margin-bottom: -15px;
    /* Acercamos el script para que ruede debajo */
    text-transform: uppercase;
}

.intro-script {
    font-family: 'Great Vibes', cursive;
    font-size: 55px;
    font-weight: 400;
    color: #27401c;
    margin-bottom: 20px;
}

.intro-divider {
    width: 24%;
    height: 2px;
    background-color: #27401c;
    margin: -16px auto 20px auto;
    opacity: 0.3;
    /* Linea sutil */
    border: none;
}

.intro-highlight {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #435832;
}

.intro-text-col p {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 15px;
}

.intro-specs {
    font-size: 11.5px;
    font-weight: 700;
    margin-top: 35px;
    color: #3b4e2b;
}

.intro-logo-bottom {
    margin-top: 40px;
}

.intro-logo-bottom img {
    height: 150px;
    width: auto;
    mix-blend-mode: multiply;
    /* Para combinar fondos de logo blanco si los hay */
}

/* Modificaciones Responsive para la tarjeta */
@media (max-width: 1200px) {
    #ubicacion .container {
        max-width: 1199px;
        padding: 0;
    }

    #ubicacion .intro-card {
        border-radius: 0;
        border-bottom-left-radius: 40px;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .intro-divider {
        width: 38%;
    }
}

@media (max-width: 991px) {
    .intro-text-col {
        padding: 50px 20px;
    }

    .intro-img-col {
        min-height: 350px;
    }

    .intro-title {
        font-size: 32px;
    }

    .intro-script {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .project-intro {
        margin-top: -80px;
    }

    .intro-img {
        border-bottom-left-radius: 0px;
    }
}

@media (max-width: 430px) {
    .intro-divider {
        width: 55%;
    }

    .intro-floating-icons {
        display: none;
    }
}

/* ==========================================================================
   Sección Huinganal (Carrusel y Texto Inferior)
   ========================================================================== */
.huinganal-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.huinganal-title {
    font-size: 26px;
    font-weight: 300;
    color: #4a4a4a;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.huinganal-title strong {
    font-weight: 700;
    color: #1b2614;
}

.huinganal-desc {
    font-size: 11px;
    color: #888;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.huinganal-carousel-container {
    position: relative;
    margin: 0 auto;
    margin-top: 40px;
}

.huinganal-carousel-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media (min-width: 768px) {
    .wrapper-left {
        border-radius: 40px 0 0 40px;
    }

    .wrapper-right {
        border-radius: 0 40px 40px 0;
    }
}

@media (max-width: 767px) {
    .wrapper-left {
        border-radius: 40px 40px 0 0;
    }

    .wrapper-right {
        border-radius: 0 0 20px 20px;
    }
}

.carousel-img-card-conectado,
.carousel-img-card-entorno {
    position: relative;
    width: 100%;
    height: 280px;
}

.carousel-img-card-conectado img,
.carousel-img-card-entorno img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-img-card-conectado::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.carousel-img-card-entorno::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.carousel-text-overlay-conectado {
    position: absolute;
    bottom: 30px;
    left: 37%;
    width: 50%;
    text-align: center;
    z-index: 2;
    color: #fff;
    pointer-events: none;
}

.carousel-text-overlay-entorno {
    position: absolute;
    bottom: 20px;
    right: 22%;
    width: 44%;
    text-align: center;
    z-index: 2;
    color: #fff;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .carousel-text-overlay-conectado {
        bottom: 60px;
        left: 30%;
        width: 57%;
    }

    .carousel-text-overlay-entorno {
        bottom: 60px;
        right: 20%;
        width: 50%;
    }
}

.overlay-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.overlay-script {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    font-weight: 400;
    display: block;
    margin-top: -15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.custom-swiper-nav {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.4);
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.custom-swiper-nav::after {
    font-size: 14px !important;
}

.huinganal-footer {
    background-color: #DEE2B0;
    border-radius: 0 0 40px 40px;
    padding: 60px 40px 30px 40px;
    margin-top: -30px;
    /* Sube la caja para esconder parte debajo del carrusel */
    text-align: center;
    position: relative;
    z-index: 1;
}

.huinganal-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 11px;
    color: #6a745c;
    line-height: 2;
    max-width: 650px;
}

.huinganal-list li {
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .huinganal-title {
        font-size: 20px;
    }

    .carousel-img-card-conectado,
    .carousel-img-card-entorno {
        height: 200px;
    }

    .huinganal-footer {
        border-radius: 0 0 25px 25px;
        padding: 50px 20px 20px 20px;
    }
}

/* ==========================================================================
   Sección Townhouse y Terminaciones
   ========================================================================== */
.townhouse-section {
    padding: 0;
}

.townhouse-desc {
    font-size: 11.5px;
    font-weight: 400;
    color: #888;
    line-height: 1.8;
    max-width: 800px;
}

.townhouse-images-wrapper {
    max-width: 1920px;
    padding: 0 10px 0 10px;
}

.townhouse-img-box {
    position: relative;
    overflow: hidden;
    height: 350px;
    width: 100%;
}

.townhouse-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.townhouse-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 10.5px;
    color: #888;
    line-height: 2.2;
    max-width: 800px;
}

.townhouse-features li {
    display: block;
}

.townhouse-features strong {
    color: #4a4a4a;
    font-weight: 600;
}

.carousel-img-card-townhouse {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.carousel-img-card-townhouse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.townhouse-mobile-carousel {
    display: none;
    width: 100%;
}

.townhouse-img-box-mobile {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
    border-radius: 0;
    /* Ensures no border-radius */
}

.townhouse-img-box-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .townhouse-images-wrapper {
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .townhouse-img-box {
        height: 250px;
    }
}

@media (max-width: 431px) {
    .townhouse-hide-431 {
        display: none !important;
    }

    .townhouse-desktop-grid {
        display: none !important;
    }

    .townhouse-mobile-carousel {
        display: block !important;
    }

    .plantas-desktop-grid {
        display: none !important;
    }

    .plantas-mobile-carousel {
        display: block !important;
    }

    .townhouse-images-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .townhouse-title-img,
    .townhouse-desc {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .townhouse-carousel {
        display: none !important;
    }
}

/* ==========================================================================
   Sección Terminaciones - Plantas y Superficies
   ========================================================================== */
.terminaciones-section {
    padding: 80px 0 60px;
}

.terminaciones-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #3a3a3a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.terminaciones-subtitle strong {
    font-weight: 800;
    color: #1b2614;
}

.terminaciones-desc {
    font-size: 11.5px;
    color: #888;
    line-height: 1.8;
    max-width: 600px;
}

/* Contenedor con borde */
.plantas-wrapper {
    /* max-width: 1100px; */
    /* border: 1px solid #ddd;
    border-radius: 10px; */
    overflow: hidden;
    text-align: left;
}

.plantas-mobile-carousel {
    display: none;
    width: 100%;
}

.plantas-img-box-mobile {
    position: relative;
    overflow: hidden;
    height: 400px;
    /* Adjust height based on your image proportion */
    width: 100%;
    margin-bottom: 20px;
}

.plantas-img-box-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keep contain so they look like floor plans */
}

/* Dots (Pagination) customization */
.custom-swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 10px;
}

.custom-swiper-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
}

.custom-swiper-pagination .swiper-pagination-bullet-active {
    background: #7aab8f;
    opacity: 1;
}

/* Grid de 3 plantas */
.plantas-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 30px 20px 20px;
}

.planta-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.planta-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 280px;
}

.planta-center {
    transform: translateY(-20px);
}

.planta-desc {
    font-size: 9.5px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    text-align: left;
}

.planta-desc strong {
    color: #4a4a4a;
}

/* Ficha técnica derecha */
.casa-ficha {
    padding: 40px 25px;
    text-align: left;
    /* border-left: 1px solid #eee; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.ficha-title {
    font-size: 13px;
    font-weight: 700;
    color: #1b2614;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.ficha-subtitle {
    font-size: 10px;
    color: #aaa;
    margin: -10px 0 5px;
    text-align: left;
}

.ficha-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ficha-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
    /* border-bottom: 1px solid #f0f0f0; */
    padding-bottom: 14px;
}

.ficha-icon {
    font-size: 16px;
    line-height: 1.2;
    flex-shrink: 0;
}

.ficha-list strong {
    font-size: 11px;
    color: #333;
    font-weight: 700;
}

.ficha-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 20px;
    background-color: #7aab8f;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 30px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.ficha-btn:hover {
    background-color: #5d9278;
    color: #fff;
}

@media (max-width: 768px) {
    .plantas-grid {
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
    }

    .planta-item {
        width: 100%;
        padding: 10px 0;
    }

    .planta-center {
        transform: none;
    }

    .casa-ficha {
        border-left: none;
        border-top: 1px solid #eee;
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Sección: Solicita Más Información (Mapa de fondo + Formulario flotante)
   ========================================================================== */

/* ── Contenedor principal ── */
.solicita-section {
    position: relative;
    padding: 0;
    background-color: #fff;
    /* área blanca debajo del mapa */
    overflow: visible;
}

/* ── Bloque de mapa (posición relativa, altura fija) ── */
.solicita-map-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.solicita-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── iframe (si se usa el Método 2) ── */
.solicita-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Overlay: sube 280px hacia el mapa con margin-top negativo ── */
.solicita-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -214px;
    /* mitad del card sube sobre el mapa */
    padding: 0 20px 50px;
}

/* ── Card blanca del formulario ── */
.solicita-form-card {
    background: #fff;
    /* sólido para contrastar con el mapa */
    border-radius: 4px;
    padding: 32px 36px 28px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* ── Título del formulario ── */
.solicita-title {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #3a3a3a;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 18px;
}

/* ── Campo genérico ── */
.solicita-field {
    margin-bottom: 10px;
}

.solicita-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 7px 0;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    color: #3a3a3a;
    outline: none;
    border-radius: 0;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.solicita-input::placeholder {
    color: #aaa;
    font-size: 11px;
}

.solicita-input:focus {
    border-bottom-color: #7aab8f;
}

/* ── Select: flecha personalizada ── */
.solicita-select,
.solicita-prefix-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 9px;
    padding-right: 20px;
    cursor: pointer;
    color: #aaa;
}

.solicita-select option:not([value=""]),
.solicita-prefix-select option {
    color: #3a3a3a;
}

/* ── Grupo de teléfono (prefijo + número) ── */
.solicita-tel-group {
    display: flex;
    align-items: flex-end;
    gap: 0;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.25s ease;
}

.solicita-tel-group:focus-within {
    border-color: #7aab8f;
}

.solicita-prefix-select {
    border-bottom: none;
    width: auto;
    flex-shrink: 0;
    padding-right: 22px;
    font-size: 11px;
    color: #3a3a3a;
    background-color: transparent;
    min-width: 65px;
}

.solicita-tel-input {
    border-bottom: none;
    flex: 1;
}

/* ── Textarea ── */
.solicita-textarea {
    resize: none;
    min-height: 42px;
}

/* ── Fila checkbox ── */
.solicita-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 14px 0 16px;
    gap: 8px;
}

.solicita-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #3a3a3a;
    cursor: pointer;
    line-height: 1.3;
}

.solicita-check-label input[type="checkbox"] {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    accent-color: #7aab8f;
    cursor: pointer;
}

.solicita-obligatorios {
    font-size: 9px;
    color: #aaa;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Botón Enviar ── */
.solicita-btn {
    display: block;
    width: 100%;
    padding: 13px 0;
    background-color: #7aab8f;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.15s ease;
    text-transform: uppercase;
}

.solicita-btn:hover {
    background-color: #5d9278;
    transform: translateY(-1px);
}

.solicita-btn:active {
    transform: translateY(0);
}

/* ── Dirección debajo del formulario ── */
.solicita-direccion {
    margin-top: 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    /* color: #fff; */
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.solicita-direccion svg {
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .solicita-map-bg {
        height: 400px;
    }

    .solicita-overlay {
        margin-top: -250px;
    }
}

@media (max-width: 480px) {
    .solicita-map-bg {
        height: 400px;
    }

    .solicita-overlay {
        margin-top: -200px;
        padding: 0 15px 40px;
    }

    .solicita-form-card {
        padding: 24px 20px 20px;
        max-width: 80%;
    }

    .solicita-title {
        font-size: 10.5px;
    }
}

/* ==========================================================================
   Footer: Contáctanos
   ========================================================================== */

/* ── Zona verde principal ── */
.footer-contact-zone {
    background-color: #DEE2B0;
    padding: 50px 0 40px;
}

/* ── Título ── */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2b302c;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 36px;
}

/* ── Fila info + CTA ── */
.footer-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ── Columna izquierda ── */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-line {
    font-size: 18px;
    color: #3a4a33;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-info-label {
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.footer-info-value {
    font-weight: 400;
}

.footer-info-inmob {
    margin-top: 10px;
}

/* ── Logo Geo Capital ── */
.footer-logo-geocapital {
    margin-top: 6px;
}

.footer-logo-geocapital img {
    height: 120px;
    width: auto;
    mix-blend-mode: multiply;
    display: block;
}

/* ── Columna derecha: Botones ── */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* ── Botón base ── */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    width: 75%;
}

/* ── Botón oscuro (contactar ejecutiva) ── */
.footer-btn-dark {
    background-color: #243D1D;
    color: #fff;
    border: 2px solid #243D1D;
}

.footer-btn-dark:hover {
    background-color: #243D1D;
    border-color: #243D1D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ── Botón outline (agendar visita) ── */
.footer-btn-outline {
    background-color: transparent;
    color: #243D1D;
    border: 2px solid #243D1D;
    text-align: center;
}

.footer-btn-outline:hover {
    background-color: #243D1D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ── Franja inferior ── */
.footer-bottom-bar {
    background-color: #8DB2A1;
    height: 70px;
}

.footer-bottom-text {
    font-size: 10px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .footer-btn {
        font-size: 10px;
        width: 70%;
    }

    .footer-info-line {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .footer-content-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-cta {
        align-items: flex-start;
        width: 100%;
        order: -1;
        /* los botones suben antes que el bloque de info */
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-contact-zone {
        padding: 40px 0 30px;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .footer-logo-geocapital img {
        height: 100px;
    }

    .box-footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer-info-line {
        font-size: 11px;
    }
}