/* ============================================================
   RÍO SERENO – QUINTAS ECOLÓGICAS
   site.css — Estilos principales
   ============================================================
   ÍNDICE
    1.  VARIABLES & RESET
    2.  UTILIDADES (container, section, ornament, títulos, reveal)
    3.  BOTONES
    4.  NAV
    5.  HERO
    6.  PROPUESTA DE VALOR (sección El Proyecto)
    7.  EXPERIENCIA (mosaico de vida)
    8.  AMENIDADES (nueva versión con imágenes)
    9.  MAPA DE LOTES (interactivo)
   10.  SITIOS CERCANOS (cards con filtros)
   11.  INVERSIÓN
   12.  GALERÍA NUEVA (imagen principal + miniaturas)
   13.  VIDEO
   14.  CTA VISITA
   15.  FORMULARIO DE CONTACTO
   16.  FAQ
   17.  FOOTER
   18.  WHATSAPP FLOTANTE
   19.  IMÁGENES REALES (logos, slides hero)
   20.  RESPONSIVE (1024px · 768px · 480px)
   ============================================================ */


/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
    --green-deep:   #0D1F0F;
    --green-dark:   #1A3620;
    --green-mid:    #2D5A3D;
    --green-light:  #4A7C5F;
    --gold:         #C9A96E;
    --gold-light:   #E2C89A;
    --gold-dark:    #A07840;
    --cream:        #F5F0E8;
    --warm-white:   #FDFAF5;
    --warm-white2:  #E5E3DC;
    --earth:        #8B6E52;
    --text-dark:    #1A1A18;
    --text-mid:     #4A4A42;
    --text-light:   #7A7A6E;
    --ff-display:   'Cormorant Garamond', Georgia, serif;
    --ff-body:      'Lora', Georgia, serif;
    --transition:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow:       0 20px 60px rgba(0,0,0,0.12);
    --radius:       4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-body); color: var(--text-dark); background: var(--warm-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }


/* ============================================================
   2. UTILIDADES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section__ornament {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto 24px;
}
.section__ornament--light {
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.7));
}

.section__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green-deep);
    margin-bottom: 20px;
}
.section__title em          { font-style: italic; color: var(--gold-dark); }
.section__title--light      { color: var(--cream); }
.section__title--light em   { color: var(--gold-light); }

.section__subtitle           { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.section__subtitle--light    { color: rgba(245,240,232,0.85); }

/* Animación de entrada */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   3. BOTONES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--ff-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}

.btn--gold {
    background: var(--gold);
    color: var(--green-deep);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201,169,110,0.35);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.5);
}
.btn--outline:hover { background: rgba(245,240,232,0.1); border-color: var(--cream); }

.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }

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


/* ============================================================
   4. NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(13,31,15,0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-icon  { width: 44px; height: 44px; flex-shrink: 0; }
.nav__logo-name  { display: block; font-family: var(--ff-display); font-size: 1.4rem; font-weight: 500; color: var(--gold); line-height: 1; }
.nav__logo-sub   { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,169,110,0.7); margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.8); transition: color 0.3s ease; }
.nav__links a:hover { color: var(--gold); }

.nav__cta {
    background: var(--gold) !important;
    color: var(--green-deep) !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600 !important;
}
.nav__cta:hover { background: var(--gold-light) !important; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: 0.3s ease; }

.nav__lang {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(245,240,232,0.6) !important;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border: 1px solid rgba(245,240,232,0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav__lang:hover {
    color: var(--gold) !important;
    border-color: rgba(201,169,110,0.4);
    background: rgba(201,169,110,0.06);
}


/* ============================================================
   5. HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}
.hero__slide.active { opacity: 1; transform: scale(1); }

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,31,15,0.85) 0%, rgba(13,31,15,0.4) 60%, rgba(13,31,15,0.2) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero__eyebrow  { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero__title    { font-family: var(--ff-display); font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 300; color: var(--cream); line-height: 1.05; margin-bottom: 24px; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(245,240,232,0.8); font-weight: 300; line-height: 1.7; max-width: 600px; margin-bottom: 44px; }
.hero__actions  { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__dots { display: flex; gap: 8px; margin-top: 48px; }
.hero__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.5);
    background: transparent;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0;
}
.hero__dot.active { background: var(--gold); border-color: var(--gold); }

.hero__scroll-hint {
    position: absolute;
    bottom: 40px; right: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero__scroll-hint span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,240,232,0.5); writing-mode: vertical-rl; }
.hero__scroll-line      { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent); animation: scrollLine 2s ease-in-out infinite; }

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%       { transform: scaleY(0.5); opacity: 0.5; }
}


/* ============================================================
   6. PROPUESTA DE VALOR (sección El Proyecto)
   ============================================================ */
.propuesta-new { background: var(--warm-white); overflow: hidden; }

.propuesta-new__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.propuesta-new__eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; display: block; }
.propuesta-new__intro   { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 44px; font-weight: 400; }

.propuesta-new__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}
.propuesta-new__stat { display: flex; flex-direction: column; gap: 4px; }
.propuesta-new__stat-num { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 300; color: var(--green-deep); line-height: 1; }
.propuesta-new__stat-num small { font-size: 1rem; color: var(--gold-dark); }
.propuesta-new__stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; font-style: italic; }

.propuesta-new__hero-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 520px;
}
.propuesta-new__hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.propuesta-new__hero-img:hover img { transform: scale(1.04); }

.propuesta-new__hero-badge {
    position: absolute;
    bottom: 28px; left: 28px;
    background: rgba(13,31,15,0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 4px;
}
.propuesta-new__hero-badge span { font-size: 0.8rem; color: var(--cream); font-style: italic; line-height: 1.4; }

/* Pilares inferiores */
.propuesta-new__pilares {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--green-deep);
}
.propuesta-new__pilar { position: relative; overflow: hidden; cursor: default; }
.propuesta-new__pilar-img { height: 260px; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.propuesta-new__pilar:hover .propuesta-new__pilar-img { transform: scale(1.06); }
.propuesta-new__pilar-body {
    padding: 28px 24px 32px;
    background: var(--green-deep);
    border-top: 2px solid transparent;
    transition: border-color 0.3s ease;
}
.propuesta-new__pilar:hover .propuesta-new__pilar-body { border-top-color: var(--gold); }
.propuesta-new__pilar-num  { font-family: var(--ff-display); font-size: 2rem; font-weight: 300; color: rgba(201,169,110,0.2); line-height: 1; display: block; margin-bottom: 10px; }
.propuesta-new__pilar-body h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--cream); margin-bottom: 10px; }
.propuesta-new__pilar-body p  { font-size: 0.85rem; color: rgba(245,240,232,0.55); line-height: 1.7; font-weight: 400; }

/* Versión antigua (por si aún existe en el HTML) */
.propuesta { background: var(--warm-white2); }
.propuesta__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.propuesta__card { background: white; border: 1px solid rgba(201,169,110,0.15); border-radius: 8px; padding: 36px 28px; text-align: center; transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.propuesta__card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.propuesta__icon { width: 56px; height: 56px; margin: 0 auto 20px; }
.propuesta__icon svg { width: 100%; height: 100%; }
.propuesta__card h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--green-deep); margin-bottom: 12px; }
.propuesta__card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }


/* ============================================================
   7. EXPERIENCIA (mosaico de vida)
   ============================================================ */
.experiencia { background: var(--green-deep); padding: 100px 0 0; }

.experiencia__header { text-align: center; padding: 0 24px 60px; }
.experiencia__header .section__title     { color: var(--cream); }
.experiencia__header .section__title em  { color: var(--gold-light); }
.experiencia__header .section__ornament  { background: linear-gradient(to bottom, transparent, var(--gold)); }
.experiencia__header .section__subtitle  { color: rgba(245,240,232,0.65); max-width: 600px; margin: 0 auto; }

.experiencia__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 320px 280px;
    gap: 3px;
}
.experiencia__item          { position: relative; overflow: hidden; }
.experiencia__item--tall    { grid-row: span 2; }
.experiencia__item--wide    { grid-column: span 2; }

.experiencia__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.experiencia__item:hover .experiencia__img { transform: scale(1.06); }

.experiencia__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(13,31,15,0.9), transparent);
    color: white;
}
.experiencia__tag        { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.experiencia__caption h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 6px; }
.experiencia__caption p  { font-size: 0.85rem; color: rgba(245,240,232,0.75); font-weight: 300; line-height: 1.6; }


/* ============================================================
   8. AMENIDADES (nueva versión con imágenes)
   ============================================================ */
.amenidades-new { padding: 100px 0; background: var(--green-deep); overflow: hidden; }

.amenidades-new__header { text-align: center; max-width: 700px; margin: 0 auto 60px; padding: 0 24px; }
.amenidades-new__header .section__title    { color: var(--cream); }
.amenidades-new__header .section__title em { color: var(--gold-light); }
.amenidades-new__header .section__ornament { background: linear-gradient(to bottom, transparent, var(--gold)); }

.amenidades-new__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 420px 300px 280px;
    gap: 3px;
    max-width: 1400px;
    margin: 0 auto;
}

.amen-card { position: relative; overflow: hidden; cursor: default; }
.amen-card__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.amen-card:hover .amen-card__img { transform: scale(1.06); }

.amen-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,26,12,0.92) 0%, rgba(10,26,12,0.4) 50%, rgba(10,26,12,0.05) 100%);
    transition: background 0.4s ease;
}
.amen-card:hover::after {
    background: linear-gradient(to top, rgba(10,26,12,0.88) 0%, rgba(10,26,12,0.3) 55%, transparent 100%);
}

.amen-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px; z-index: 2; transform: translateY(4px); transition: transform 0.4s ease; }
.amen-card:hover .amen-card__body { transform: translateY(0); }

.amen-card__tag  { display: inline-block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; border-bottom: 1px solid rgba(201,169,110,0.4); padding-bottom: 4px; }
.amen-card__body h3 { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 500; color: var(--cream); line-height: 1.2; margin-bottom: 8px; }
.amen-card__body p  { font-size: 0.85rem; color: rgba(245,240,232,0.7); line-height: 1.65; font-weight: 300; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.4s ease; }
.amen-card:hover .amen-card__body p { max-height: 80px; opacity: 1; }

.amen-card--tall { grid-row: span 2; }

/* Posiciones explícitas en el grid */
.amenidades-new__grid .amen-card:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.amenidades-new__grid .amen-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.amenidades-new__grid .amen-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.amenidades-new__grid .amen-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.amenidades-new__grid .amen-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.amenidades-new__grid .amen-card:nth-child(6) { grid-column: 1; grid-row: 3; }
.amenidades-new__grid .amen-card:nth-child(7) { grid-column: 2; grid-row: 3; }
.amenidades-new__grid .amen-card:nth-child(8) { grid-column: 3; grid-row: 3; }

/* Versión antigua (por compatibilidad) */
.amenidades { background: var(--cream); }
.amenidades__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenidades__card { background: white; border-radius: 8px; padding: 32px 24px; text-align: center; border-bottom: 3px solid transparent; transition: var(--transition); box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.amenidades__card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.amenidades__icon  { font-size: 2rem; margin-bottom: 14px; }
.amenidades__title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.amenidades__desc  { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }


/* ============================================================
   9. MAPA DE LOTES
   ============================================================ */
.lotes-section { background: var(--green-deep); padding: 100px 0 60px; }
.lotes-section .section__title    { color: var(--cream); }
.lotes-section .section__title em { color: var(--gold-light); }
.lotes-section .section__subtitle { color: rgba(245,240,232,0.65); }
.lotes-section .section__ornament { background: linear-gradient(to bottom, transparent, var(--gold)); }

.lotes-map { display: grid; grid-template-columns: 1fr 300px; gap: 0; max-width: 1400px; margin: 0 auto; padding: 0 24px; align-items: start; }
.lotes-map__wrap  { position: relative; border-radius: 12px 0 0 12px; overflow: hidden; background: #0a1a0c; line-height: 0; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lotes-map__img   { width: 100%; height: auto; display: block; user-select: none; }
.lotes-map__svg   { position: absolute; inset: 0; width: 100%; height: 100%; }

.lotes-map__svg polygon          { fill: rgba(201,169,110,0.10); stroke: rgba(201,169,110,0.55); stroke-width: 1.5; cursor: pointer; transition: fill 0.25s ease, stroke 0.25s ease; }
.lotes-map__svg polygon:hover    { fill: rgba(201,169,110,0.35); stroke: var(--gold); stroke-width: 2; }
.lotes-map__svg polygon.active   { fill: rgba(201,169,110,0.45); stroke: #E2C89A; stroke-width: 2.5; filter: drop-shadow(0 0 8px rgba(201,169,110,0.6)); }
.lotes-map__svg polygon.reservado { fill: rgba(255,165,0,0.15); stroke: rgba(255,165,0,0.5); }
.lotes-map__svg polygon.reservado:hover,
.lotes-map__svg polygon.reservado.active { fill: rgba(255,165,0,0.35); stroke: orange; }
.lotes-map__svg polygon.vendido  { fill: rgba(180,60,60,0.18); stroke: rgba(200,80,80,0.5); cursor: not-allowed; }

.lotes-tooltip {
    position: absolute;
    pointer-events: none;
    background: rgba(13,31,15,0.92);
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    transform: translate(-50%, -110%);
    backdrop-filter: blur(6px);
    z-index: 10;
}
.lotes-tooltip .tip-num  { font-weight: 600; color: var(--gold-light); }
.lotes-tooltip .tip-area { font-size: 0.75rem; color: rgba(245,240,232,0.6); }

.lotes-panel {
    background: rgba(10,26,12,0.97);
    border: 1px solid rgba(201,169,110,0.2);
    border-left: none;
    border-radius: 0 12px 12px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    position: relative;
    backdrop-filter: blur(10px);
}

.lotes-panel__empty { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lotes-panel__empty p { font-family: var(--ff-display); font-size: 1.1rem; color: rgba(245,240,232,0.4); line-height: 1.6; }

.lotes-panel__info  { width: 100%; animation: panelSlide 0.35s ease; }
@keyframes panelSlide {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.lotes-panel__close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.25);
    color: rgba(201,169,110,0.7);
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}
.lotes-panel__close:hover { background: rgba(201,169,110,0.2); color: var(--gold); }

.lotes-panel__badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    background: rgba(74,124,95,0.25);
    border: 1px solid rgba(74,124,95,0.5);
    color: #7EC89A;
    margin-bottom: 18px;
}
.lotes-panel__badge.reservado { background: rgba(200,140,20,0.2); border-color: rgba(200,140,20,0.4); color: #DCA84A; }
.lotes-panel__badge.vendido   { background: rgba(180,60,60,0.2);  border-color: rgba(180,60,60,0.4);  color: #E08080; }

.lotes-panel__num  { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 400; color: var(--cream); line-height: 1; margin-bottom: 6px; }
.lotes-panel__area { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 300; color: var(--gold); margin-bottom: 24px; }

.lotes-panel__divider { height: 1px; background: rgba(201,169,110,0.15); margin-bottom: 20px; }

.lotes-panel__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }
.lotes-panel__row span   { color: rgba(245,240,232,0.45); font-weight: 300; }
.lotes-panel__row strong { color: var(--cream); font-weight: 400; text-align: right; }

.lotes-panel__estado          { color: #7EC89A !important; }
.lotes-panel__estado.reservado { color: #DCA84A !important; }
.lotes-panel__estado.vendido   { color: #E08080 !important; }

.lotes-panel__cta { margin-top: 24px; font-size: 0.78rem; padding: 14px 20px; }

.lotes-panel__nav { display: flex; justify-content: space-between; margin-top: 14px; gap: 8px; }
.lotes-panel__navbtn {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.2);
    color: rgba(201,169,110,0.6);
    padding: 8px 4px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: var(--radius);
    transition: 0.25s ease;
    font-family: var(--ff-body);
}
.lotes-panel__navbtn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06); }

.lotes-legend { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-top: 28px; }
.lotes-legend__item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(245,240,232,0.5); font-weight: 300; }
.lotes-legend__dot  { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; }
.lotes-legend__dot--available { background: rgba(201,169,110,0.35); border: 1px solid rgba(201,169,110,0.7); }
.lotes-legend__dot--reserved  { background: rgba(200,140,20,0.25);  border: 1px solid rgba(200,140,20,0.5); }
.lotes-legend__dot--sold      { background: rgba(180,60,60,0.2);    border: 1px solid rgba(180,60,60,0.4); }
.lotes-legend__sep            { flex: 1; height: 1px; background: rgba(201,169,110,0.1); }
.lotes-legend__item--info     { gap: 6px; }
.lotes-legend__item--info svg { color: var(--gold); opacity: 0.6; }


/* ============================================================
   10. SITIOS CERCANOS
   ============================================================ */
.cercanos { background: var(--cream); }

.sitios-filtros { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 50px; }
.sitios-filtro {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid rgba(45,90,61,0.25);
    border-radius: 40px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}
.sitios-filtro:hover  { border-color: var(--green-mid); color: var(--green-mid); }
.sitios-filtro.active { background: var(--green-deep); border-color: var(--green-deep); color: var(--gold); }

.sitios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.sitio-card {
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}
.sitio-card:hover  { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
.sitio-card.hidden { display: none; }
.sitio-card--featured { grid-column: span 2; }

.sitio-card__img { position: relative; overflow: hidden; height: 200px; }
.sitio-card--featured .sitio-card__img { height: 220px; }
.sitio-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.sitio-card:hover .sitio-card__img img { transform: scale(1.06); }

.sitio-card__dist {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(13,31,15,0.82);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}
.sitio-card__dist svg    { flex-shrink: 0; }
.sitio-card__dist--near  { background: rgba(201,169,110,0.92); color: var(--green-deep); font-weight: 600; }

.sitio-card__body { padding: 16px 18px 20px; border-top: 2px solid transparent; transition: border-color 0.3s ease; }
.sitio-card:hover .sitio-card__body { border-top-color: var(--gold); }
.sitio-card__cat  { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; display: block; margin-bottom: 5px; }
.sitio-card__body h3 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500; color: var(--green-deep); line-height: 1.25; }

/* Versión antigua con infografías (por compatibilidad) */
.sitios-slider { display: flex; flex-direction: column; gap: 28px; max-width: 960px; margin: 0 auto; }
.sitios-img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.14); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.sitios-img:hover { transform: translateY(-4px); box-shadow: 0 32px 70px rgba(0,0,0,0.18); }

/* Versión antigua texto (por compatibilidad) */
.ubicacion { background: var(--warm-white); }
.ubicacion__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.ubicacion__item { background: white; border: 1px solid rgba(201,169,110,0.2); border-radius: 8px; padding: 20px 18px; transition: var(--transition); }
.ubicacion__item:hover { border-color: var(--gold); box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-3px); }
.ubicacion__cat    { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.ubicacion__nombre { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 500; color: var(--green-deep); margin-bottom: 10px; line-height: 1.3; }
.ubicacion__dist   { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-light); }
.ubicacion__dist svg { color: var(--gold); flex-shrink: 0; }


/* ============================================================
   11. INVERSIÓN
   ============================================================ */
.inversion { position: relative; padding: 120px 0; overflow: hidden; }
.inversion__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 60%, #0A1A0C 100%); }
.inversion__bg::after { content: ''; position: absolute; inset: 0; background-image: url('/images/naturaleza.png'); background-size: cover; opacity: 0.08; }
.inversion .container { position: relative; z-index: 1; }

.inversion__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 20px; }
.inversion__col  { padding: 50px 40px; border: 1px solid rgba(201,169,110,0.15); transition: var(--transition); }
.inversion__col:hover { background: rgba(201,169,110,0.05); }
.inversion__col--featured { background: rgba(201,169,110,0.08); border-color: rgba(201,169,110,0.35); }

.inversion__num     { font-family: var(--ff-display); font-size: 3rem; font-weight: 300; color: rgba(201,169,110,0.25); line-height: 1; margin-bottom: 20px; }
.inversion__col h3  { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400; color: var(--gold-light); margin-bottom: 16px; }
.inversion__col p   { font-size: 0.95rem; color: rgba(245,240,232,0.7); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.inversion__col ul  { display: flex; flex-direction: column; gap: 10px; }
.inversion__col li  { font-size: 0.85rem; color: rgba(245,240,232,0.6); padding-left: 16px; position: relative; font-weight: 300; }
.inversion__col li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--gold); }


/* ============================================================
   12. GALERÍA NUEVA
   ============================================================ */
.galeria-new { padding: 100px 0 0; background: var(--green-deep); }
.galeria-new .section__title    { color: var(--cream); }
.galeria-new .section__title em { color: var(--gold-light); }
.galeria-new .section__ornament { background: linear-gradient(to bottom, transparent, var(--gold)); }

.galeria-new__grid { display: grid; grid-template-columns: 1fr 340px; gap: 3px; }

.galeria-new__item--main { position: relative; height: 620px; overflow: hidden; background: #0a1a0c; }
.galeria-new__item--main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.4s ease; }
.galeria-new__item--main span {
    position: absolute;
    bottom: 24px; left: 28px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.8);
    background: rgba(13,31,15,0.65);
    padding: 7px 16px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}

.galeria-new__thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; height: 620px; overflow-y: auto; scrollbar-width: none; }
.galeria-new__thumbs::-webkit-scrollbar { display: none; }

.galeria-new__thumb { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; background: #0a1a0c; }
.galeria-new__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, opacity 0.3s ease; opacity: 0.65; }
.galeria-new__thumb:hover img,
.galeria-new__thumb.active img { opacity: 1; transform: scale(1.06); }
.galeria-new__thumb.active::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--gold); pointer-events: none; }

/* Versión antigua del carrusel (por compatibilidad) */
.galeria { padding: 100px 0 80px; overflow: hidden; }
.galeria__track { display: flex; gap: 16px; padding: 0 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.galeria__track::-webkit-scrollbar { display: none; }
.galeria__slide { flex: 0 0 400px; height: 500px; border-radius: 8px; background-size: cover; background-position: center; scroll-snap-align: start; position: relative; overflow: hidden; transition: transform 0.4s ease; }
.galeria__slide:hover { transform: scale(0.98); }
.galeria__slide span { position: absolute; bottom: 20px; left: 20px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.8); background: rgba(13,31,15,0.6); padding: 6px 14px; border-radius: 2px; backdrop-filter: blur(4px); }
.galeria__controls { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.galeria__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.4); background: transparent; color: var(--gold); font-size: 1.1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.galeria__btn:hover { background: var(--gold); color: var(--green-deep); }


/* ============================================================
   13. VIDEO
   ============================================================ */
.video-section { padding: 100px 0; background: var(--warm-white); }

.video-wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.video-thumb { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 16/9; background: var(--green-deep); }
.video-thumb__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; filter: brightness(0.75); }
.video-thumb:hover .video-thumb__img { transform: scale(1.03); }
.video-thumb__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,15,0.5), rgba(13,31,15,0.2)); }

.video-thumb__play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.video-thumb:hover .video-thumb__play { transform: scale(1.08); }
.video-play__ring { transition: stroke-dashoffset 0.6s ease; }
.video-thumb:hover .video-play__ring { stroke-dashoffset: 0; transition: stroke-dashoffset 1.2s ease; }
.video-thumb__play span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-family: var(--ff-body); }

.video-player { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; background: #000; }
.video-player iframe,
.video-player video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }


/* ============================================================
   14. CTA VISITA
   ============================================================ */
.visita { position: relative; padding: 140px 0; text-align: center; overflow: hidden; }
.visita__bg      { position: absolute; inset: 0; background-size: cover; background-position: center; }
.visita__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,31,15,0.75), rgba(13,31,15,0.85)); }
.visita .container { position: relative; z-index: 1; }
.visita__content .section__header { max-width: 700px; margin: 0 auto; }
.visita__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }


/* ============================================================
   15. FORMULARIO DE CONTACTO
   ============================================================ */
.contacto { background: var(--cream); }
.contacto__wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }

.contacto__info .section__title { font-size: 2.4rem; margin-bottom: 16px; }
.contacto__info p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 36px; }
.contacto__datos { display: flex; flex-direction: column; gap: 14px; }
.contacto__dato  { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--green-mid); font-weight: 400; transition: color 0.3s; }
.contacto__dato:hover { color: var(--gold-dark); }
.contacto__dato svg { color: var(--gold); flex-shrink: 0; }

.contacto__form { background: white; padding: 50px 44px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.form__row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__group label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); font-weight: 500; }

.form__group input,
.form__group select,
.form__group textarea {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--warm-white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold); background: white; }

.form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A6E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form__group textarea { resize: vertical; min-height: 110px; }

.form__success { display: none; margin-top: 16px; padding: 14px 20px; background: rgba(45,90,61,0.1); border: 1px solid var(--green-mid); border-radius: var(--radius); color: var(--green-mid); font-size: 0.9rem; text-align: center; }
/* ==========================================
   TELÉFONO CON SELECTOR DE PAÍS CUSTOM
   ========================================== */
.phone-input {
    display: flex;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    overflow: visible;
    transition: border-color 0.3s ease;
    background: var(--warm-white);
    position: relative;
}
.phone-input:focus-within {
    border-color: var(--gold);
    background: white;
}

.phone-input__selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 10px 14px 14px;
    cursor: pointer;
    border-right: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.02);
    flex-shrink: 0;
    user-select: none;
    transition: background 0.2s ease;
    border-radius: var(--radius) 0 0 var(--radius);
    min-width: 90px;
}
.phone-input__selector:hover { background: rgba(201,169,110,0.06); }

.phone-input__flag { display: flex; align-items: center; line-height: 1; }
.phone-input__flag svg { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }

.phone-input__code { font-size: 0.85rem; color: var(--text-dark); font-weight: 500; white-space: nowrap; }

.phone-input__arrow { flex-shrink: 0; transition: transform 0.25s ease; }
.phone-input--open .phone-input__arrow { transform: rotate(180deg); }

.phone-input input[type="tel"] {
    flex: 1;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    background: transparent;
    border: none;
    padding: 14px 16px;
    outline: none;
    min-width: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Dropdown */
.phone-dropdown {
    position: fixed;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

    .phone-dropdown.open {
        display: block;
    }

.phone-dropdown__search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.phone-dropdown__search svg { color: var(--text-light); flex-shrink: 0; }
.phone-dropdown__search input {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    border: none;
    outline: none;
    width: 100%;
    color: var(--text-dark);
    background: transparent;
}
.phone-dropdown__search input::placeholder { color: var(--text-light); }

.phone-dropdown__list {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.phone-dropdown__list::-webkit-scrollbar { width: 4px; }
.phone-dropdown__list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }

.phone-dropdown__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 0.88rem;
}
.phone-dropdown__list li:hover { background: rgba(201,169,110,0.08); }
.phone-dropdown__list li.selected { background: rgba(201,169,110,0.12); }

.phone-flag { display: flex; align-items: center; flex-shrink: 0; }
.phone-flag svg { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }

.phone-country { flex: 1; color: var(--text-dark); }
.phone-code    { color: var(--text-light); font-size: 0.8rem; flex-shrink: 0; }

/* Overrides para que no herede estilos del form__group */
.form__group .phone-input input[type="tel"],
.form__group .phone-input input[type="tel"]:focus {
    border: none;
    background: transparent;
    box-shadow: none;
}

/* Estado de error en campo */
.form__group input.error,
.form__group select.error,
.form__group textarea.error {
    border-color: #C0392B;
    background: rgba(192,57,43,0.03);
}

/* Mensaje de error bajo el campo */
.form__error {
    display: none;
    font-size: 0.75rem;
    color: #C0392B;
    margin-top: 5px;
    padding-left: 2px;
    font-style: italic;
    animation: fadeInDown 0.2s ease;
}

    .form__error.visible {
        display: block;
    }

/* Borde dorado cuando el campo está correcto */
.form__group input.valid,
.form__group select.valid,
.form__group textarea.valid {
    border-color: var(--green-mid);
}

/* Icono check dentro del campo válido */
.form__group {
    position: relative;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* ==========================================
   ALERTA DE ÉXITO — TOAST PREMIUM
   ========================================== */
.toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,26,12,0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

    .toast-overlay.show {
        opacity: 1;
        pointer-events: all;
    }

.toast {
    background: white;
    border-radius: 12px;
    padding: 52px 48px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.toast-overlay.show .toast {
    transform: translateY(0) scale(1);
}

.toast__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
}

    .toast__icon::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px solid rgba(45,90,61,0.2);
        animation: ringPulse 2s ease-in-out infinite;
    }

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.2;
    }
}

.toast__icon svg {
    color: white;
}

.toast__ornament {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto 20px;
}

.toast__title {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 14px;
}

    .toast__title em {
        font-style: italic;
        color: var(--gold-dark);
    }

.toast__text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
}

.toast__divider {
    height: 1px;
    background: rgba(201,169,110,0.2);
    margin-bottom: 28px;
}

.toast__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.toast__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--gold);
    color: var(--green-deep);
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

    .toast__btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(201,169,110,0.35);
    }

.toast__btn-secondary {
    padding: 13px 24px;
    background: transparent;
    color: var(--text-light);
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

    .toast__btn-secondary:hover {
        border-color: var(--text-light);
        color: var(--text-dark);
    }

.toast__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.75rem;
    transition: 0.2s ease;
}

    .toast__close:hover {
        background: rgba(0,0,0,0.1);
        color: var(--text-dark);
    }

@media (max-width: 480px) {
    .toast {
        padding: 40px 28px;
    }

    .toast__actions {
        flex-direction: column;
    }

    .toast__btn-primary,
    .toast__btn-secondary {
        width: 100%;
        justify-content: center;
    }
}



/* ============================================================
   16. FAQ
   ============================================================ */
.faq { background: var(--warm-white); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: white; border: 1px solid rgba(201,169,110,0.15); border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s ease; }
.faq__item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--green-deep);
    transition: color 0.3s ease;
}
.faq__question:hover { color: var(--gold-dark); }
.faq__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform 0.4s ease; }
.faq__item.open .faq__icon { transform: rotate(180deg); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__answer p { padding: 0 28px 22px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.faq__item.open .faq__answer { max-height: 200px; }


/* ============================================================
   17. FOOTER
   ============================================================ */
.footer { background: var(--green-deep); color: rgba(245,240,232,0.7); }
.footer__top { padding: 80px 0 60px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }

.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand > div { display: flex; align-items: center; gap: 14px; }
.footer__logo-icon { width: 48px; height: 48px; flex-shrink: 0; }
.footer__name { font-family: var(--ff-display); font-size: 1.5rem; color: var(--gold); font-weight: 500; }
.footer__sub  { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,169,110,0.6); }
.footer__desc { font-size: 0.88rem; line-height: 1.75; font-weight: 300; color: rgba(245,240,232,0.55); max-width: 340px; }

.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__links h4, .footer__contact h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.footer__links a, .footer__contact a   { font-size: 0.88rem; font-weight: 300; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-light); }

.footer__social { display: flex; gap: 14px; margin-top: 8px; }
.footer__social a { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: 0.78rem; font-weight: 300; color: rgba(245,240,232,0.35); }


/* ============================================================
   18. WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 99;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.55); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}


/* ============================================================
   19. IMÁGENES REALES
   ============================================================ */
/* Hero slides */
.hero__slide--1 { background-image: url('/images/entrada.png'); }
.hero__slide--2 { background-image: url('/images/sendero.png'); }
.hero__slide--3 { background-image: url('/images/naturaleza.png'); }

/* Logo nav */
.nav__logo-img { height: 100px; width: auto; max-width: 200px; object-fit: contain; filter: drop-shadow(0 0 1px rgba(0,0,0,0.3)); }

/* Logo footer */
.footer__logo-img { width: 180px; height: auto; object-fit: contain; margin-bottom: 8px; mix-blend-mode: lighten; opacity: 0.9; }


/* ============================================================
   20. RESPONSIVE
   ============================================================ */

/* --- Tablet 1024px --- */
@media (max-width: 1024px) {
    /* Propuesta nueva */
    .propuesta-new__hero   { grid-template-columns: 1fr; padding: 80px 32px; gap: 50px; }
    .propuesta-new__hero-img { height: 380px; }
    .propuesta-new__pilares  { grid-template-columns: repeat(2, 1fr); }

    /* Amenidades */
    .amenidades__grid { grid-template-columns: repeat(2, 1fr); }
    .amenidades-new__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 380px 280px 280px 280px;
    }
    .amenidades-new__grid .amen-card:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
    .amenidades-new__grid .amen-card:nth-child(2) { grid-column: 2; grid-row: 1; }
    .amenidades-new__grid .amen-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .amenidades-new__grid .amen-card:nth-child(4) { grid-column: 1; grid-row: 3; }
    .amenidades-new__grid .amen-card:nth-child(5) { grid-column: 2; grid-row: 3; }
    .amenidades-new__grid .amen-card:nth-child(6) { grid-column: 1; grid-row: 4; }
    .amenidades-new__grid .amen-card:nth-child(7) { grid-column: 2; grid-row: 4; }
    .amenidades-new__grid .amen-card:nth-child(8) { grid-column: 1 / span 2; grid-row: 5; height: 240px; }

    /* Experiencia */
    .experiencia__mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
    .experiencia__item--tall { grid-row: span 1; }
    .experiencia__item--wide { grid-column: span 2; }
    .experiencia__item { height: 280px; }

    /* Mapa lotes */
    .lotes-map { grid-template-columns: 1fr; }
    .lotes-map__wrap  { border-radius: 12px 12px 0 0; }
    .lotes-panel      { border-radius: 0 0 12px 12px; border-left: 1px solid rgba(201,169,110,0.2); border-top: none; min-height: auto; }
    .lotes-panel__info { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
    .lotes-panel__badge,
    .lotes-panel__num,
    .lotes-panel__area,
    .lotes-panel__divider { grid-column: span 2; }
    .lotes-panel__cta,
    .lotes-panel__nav { grid-column: span 2; }

    /* Sitios cercanos */
    .sitios-grid { grid-template-columns: repeat(3, 1fr); }
    .sitio-card--featured { grid-column: span 1; }
    .sitio-card--featured .sitio-card__img { height: 200px; }

    /* Galería nueva */
    .galeria-new__grid { grid-template-columns: 1fr; }
    .galeria-new__item--main { height: 480px; }
    .galeria-new__thumbs { height: auto; grid-template-columns: repeat(4, 1fr); overflow-x: auto; overflow-y: visible; }
    .galeria-new__thumb { aspect-ratio: 1; min-width: 100px; }

    /* Inversión y contacto */
    .inversion__cols   { grid-template-columns: 1fr; gap: 16px; }
    .contacto__wrap    { grid-template-columns: 1fr; gap: 50px; }

    /* Footer */
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__brand { grid-column: span 2; }
}

/* --- Mobile 768px --- */
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section__title { font-size: 2rem; }

    /* Nav mobile */
    .nav { padding: 16px 0; background: rgba(13,31,15,0.95); }
    .nav__toggle { display: flex; }
    .nav__links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10,26,12,0.98);
        backdrop-filter: blur(12px);
        padding: 8px 0 16px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.35);
        z-index: 200;
    }
    .nav__links.open { display: flex; }
    .nav__links li   { width: 100%; }
    .nav__links a    { display: block; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; width: 100%; }
    .nav__links .nav__cta {
        background: transparent !important;
        color: var(--gold) !important;
        border-radius: 0;
        padding: 14px 24px !important;
        font-weight: 500 !important;
        border-bottom: none !important;
        border-top: 1px solid rgba(201,169,110,0.2) !important;
        margin-top: 4px;
    }
    .nav__links .nav__cta:hover { background: rgba(201,169,110,0.1) !important; color: var(--gold-light) !important; }

    /* Switcher de idioma en mobile */
    .nav__links .nav__lang {
        margin: 6px 24px 0;
        display: inline-flex;
        width: auto;
        border-color: rgba(201,169,110,0.25);
    }

    /* Logo y footer responsive */
    .nav__logo-img    { height: 40px; }
    .footer__logo-img { width: 140px; }
    .sitios-img       { border-radius: 10px; }

    /* Hero */
    .hero__title    { font-size: 2.6rem; }
    .hero__subtitle { font-size: 1rem; }
    .hero__actions  { flex-direction: column; align-items: flex-start; }
    .hero__scroll-hint { display: none; }

    /* Propuesta */
    .propuesta__grid  { grid-template-columns: 1fr 1fr; }
    .amenidades__grid { grid-template-columns: repeat(2, 1fr); }

    /* Experiencia — flex column con altura fija */
    .experiencia { padding: 70px 0 0; }
    .experiencia__mosaic { display: flex; flex-direction: column; gap: 3px; }
    .experiencia__item { width: 100%; height: 260px; position: relative; }
    .experiencia__item--tall,
    .experiencia__item--wide { grid-row: unset; grid-column: unset; height: 260px; }
    .experiencia__mosaic .experiencia__item:first-child { height: 300px; }

    /* Galería */
    .galeria__slide { flex: 0 0 80vw; height: 300px; }
    .galeria-new__item--main { height: 320px; }
    .galeria-new { padding: 70px 0 0; }

    /* Inversión */
    .inversion__col { padding: 36px 28px; }

    /* Formulario */
    .contacto__form { padding: 36px 28px; }
    .form__row { grid-template-columns: 1fr; }

    /* Footer */
    .footer__inner { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
    .footer__bottom .container { flex-direction: column; text-align: center; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* --- Mobile pequeño 640px --- */
@media (max-width: 640px) {
    /* Amenidades */
    .amenidades-new__grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .amenidades-new__grid .amen-card { grid-column: 1 !important; grid-row: auto !important; height: 280px; }
    .amenidades-new__grid .amen-card--tall { height: 340px; }
    .amen-card__body p { max-height: 60px; opacity: 1; }

    /* Mapa lotes */
    .lotes-map { padding: 0 16px; }
    .lotes-panel__info { display: block; }
    .lotes-map__svg polygon { stroke-width: 1; }

    /* Sitios cercanos */
    .sitios-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sitio-card__img { height: 150px; }

    /* Propuesta pilares */
    .propuesta-new__pilares { grid-template-columns: 1fr; }
    .propuesta-new__pilar-img { height: 200px; }
}

/* --- Mobile muy pequeño 480px --- */
@media (max-width: 480px) {
    .propuesta__grid  { grid-template-columns: 1fr; }
    .amenidades__grid { grid-template-columns: 1fr; }
    .ubicacion__grid  { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: 2rem; }
    .visita__actions  { flex-direction: column; align-items: center; }

    .propuesta-new__hero    { padding: 60px 20px; }
    .propuesta-new__stats   { gap: 24px; flex-wrap: wrap; }

    .experiencia__item { height: 220px; }
    .experiencia__mosaic .experiencia__item:first-child { height: 260px; }
    .experiencia__caption h3 { font-size: 1.1rem; }

    .galeria__slide    { flex: 0 0 90vw; height: 260px; }
    .galeria__controls { margin-top: 16px; }
}

/* --- Sitios cercanos 400px --- */
@media (max-width: 400px) {
    .sitios-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SELECT CUSTOM — interés
   ============================================================ */
.select-custom {
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    background: var(--warm-white);
    transition: border-color 0.3s ease;
    cursor: pointer;
}

    .select-custom:focus-within,
    .select-custom.open {
        border-color: var(--gold);
        background: white;
    }

.select-custom__selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    user-select: none;
}

.select-custom__value {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    transition: color 0.2s ease;
}

    .select-custom__value.selected {
        color: var(--text-dark);
        font-weight: 400;
    }

.select-custom__arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.select-custom.open .select-custom__arrow {
    transform: rotate(180deg);
}

.select-custom.error {
    border-color: #C0392B;
}

.select-custom.valid {
    border-color: var(--green-mid);
}

/* Dropdown del select */
.select-dropdown {
    position: fixed;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

    .select-dropdown.open {
        display: block;
    }

.select-dropdown__search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

    .select-dropdown__search svg {
        color: var(--text-light);
        flex-shrink: 0;
    }

    .select-dropdown__search input {
        font-family: var(--ff-body);
        font-size: 0.85rem;
        border: none;
        outline: none;
        width: 100%;
        color: var(--text-dark);
        background: transparent;
    }

        .select-dropdown__search input::placeholder {
            color: var(--text-light);
        }

.select-dropdown__list {
    list-style: none;
    padding: 6px 0;
}

    .select-dropdown__list li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        cursor: pointer;
        transition: background 0.15s ease;
    }

        .select-dropdown__list li:hover {
            background: rgba(201,169,110,0.07);
        }

        .select-dropdown__list li.selected {
            background: rgba(201,169,110,0.12);
        }

        .select-dropdown__list li.hidden {
            display: none;
        }

.select-option__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.select-option__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .select-option__text strong {
        font-family: var(--ff-display);
        font-size: 1rem;
        font-weight: 500;
        color: var(--green-deep);
        line-height: 1.2;
    }

    .select-option__text span {
        font-size: 0.78rem;
        color: var(--text-light);
        font-weight: 300;
        font-style: italic;
    }


/* ============================================================
   SECCIONES ALTERNADAS — AGREGAR AL FINAL DE site.css
   ============================================================ */

/* ---- Propuesta — CLARO ---- */
.propuesta {
    background: var(--cream);
}

/* ---- Experiencia + Amenidades fusionadas — OSCURO ---- */
.experiencia-amen {
    background: var(--green-deep);
    padding: 100px 0 0;
}

    .experiencia-amen .section__header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px;
        padding: 0 24px;
    }

/* Cards complementarias de amenidades (fila debajo del mosaico) */
.amen-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 30px;
    padding-bottom: 100px;
}

.amen-mini-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,169,110,0.12);
    border-top: 2px solid transparent;
    padding: 36px 32px 40px;
    transition: border-top-color 0.3s ease, background 0.3s ease;
}

    .amen-mini-card:hover {
        border-top-color: var(--gold);
        background: rgba(201,169,110,0.04);
    }

.amen-mini-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
}

    .amen-mini-card__icon svg {
        width: 100%;
        height: 100%;
    }

.amen-mini-card__tag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(201,169,110,0.3);
    padding-bottom: 4px;
}

.amen-mini-card h3 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.25;
}

.amen-mini-card p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.7;
    font-weight: 300;
}

/* ---- Lotes — CLARO ---- */
.lotes-section--light {
    background: var(--cream);
}

    .lotes-section--light .section__title,
    .lotes-section--light .section__subtitle {
        color: var(--green-deep);
    }

        .lotes-section--light .section__title em {
            color: var(--gold-dark);
        }

    .lotes-section--light .section__ornament {
        background: linear-gradient(to bottom, transparent, var(--gold-dark));
    }

    .lotes-section--light .lotes-legend__item {
        color: var(--text-mid);
    }

    .lotes-section--light .lotes-legend__sep {
        background: rgba(201,169,110,0.3);
    }

/* Panel del mapa en modo claro */
.lotes-panel--light {
    background: white;
    border-color: rgba(201,169,110,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

    .lotes-panel--light .lotes-panel__empty p {
        color: var(--text-light);
    }

    .lotes-panel--light .lotes-panel__num {
        color: var(--green-deep);
    }

    .lotes-panel--light .lotes-panel__area {
        color: var(--gold-dark);
    }

    .lotes-panel--light .lotes-panel__row span {
        color: var(--text-light);
    }

    .lotes-panel--light .lotes-panel__row strong {
        color: var(--text-dark);
    }

    .lotes-panel--light .lotes-panel__row {
        border-bottom-color: rgba(0,0,0,0.06);
    }

    .lotes-panel--light .lotes-panel__close {
        background: rgba(201,169,110,0.1);
        border-color: rgba(201,169,110,0.3);
        color: var(--gold-dark);
    }

    .lotes-panel--light .lotes-panel__navbtn {
        border-color: rgba(201,169,110,0.3);
        color: var(--gold-dark);
    }

        .lotes-panel--light .lotes-panel__navbtn:hover {
            border-color: var(--gold-dark);
            color: var(--gold-dark);
            background: rgba(201,169,110,0.08);
        }

.lotes-map__wrap {
    border-radius: 12px 0 0 12px;
}

/* ---- Sitios Cercanos — OSCURO ---- */
.cercanos--dark {
    background: var(--green-deep);
}

    .cercanos--dark .sitios-filtro {
        border-color: rgba(201,169,110,0.25);
        color: rgba(245,240,232,0.5);
    }

        .cercanos--dark .sitios-filtro:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .cercanos--dark .sitios-filtro.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--green-deep);
        }

    .cercanos--dark .sitio-card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(201,169,110,0.1);
        box-shadow: none;
    }

        .cercanos--dark .sitio-card:hover {
            background: rgba(255,255,255,0.07);
            box-shadow: 0 16px 40px rgba(0,0,0,0.3);
        }

    .cercanos--dark .sitio-card__body {
        border-top-color: transparent;
    }

    .cercanos--dark .sitio-card:hover .sitio-card__body {
        border-top-color: var(--gold);
    }

    .cercanos--dark .sitio-card__body h3 {
        color: var(--cream);
    }

    .cercanos--dark .sitio-card__cat {
        color: var(--gold);
    }

/* ---- Inversión — CLARO ---- */
.inversion--light {
    background: var(--cream);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

    .inversion--light::before {
        display: none; /* quita el fondo oscuro */
    }

.inversion__cols--light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.inversion__col--light {
    background: white;
    border: 1px solid rgba(201,169,110,0.2);
    border-top: 3px solid transparent;
    border-radius: 4px;
    padding: 44px 36px;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

    .inversion__col--light:hover {
        border-top-color: var(--gold);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }

.inversion__col--featured-light {
    border-top-color: var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.inversion__num--light {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201,169,110,0.3);
    line-height: 1;
    margin-bottom: 20px;
}

.inversion__col--light h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--green-deep);
    margin-bottom: 14px;
}

.inversion__col--light p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
}

.inversion__col--light ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inversion__col--light li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 16px;
    position: relative;
    font-weight: 300;
}

    .inversion__col--light li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 6px;
        height: 1px;
        background: var(--gold);
    }

/* ---- Video — OSCURO ---- */
.video-section--dark {
    background: var(--green-deep);
}

/* ---- Galería — CLARO ---- */
.galeria-new--light {
    background: var(--cream);
    padding: 100px 0 0;
    padding-bottom:8%;
}

    .galeria-new--light .section__title {
        color: var(--green-deep);
    }

        .galeria-new--light .section__title em {
            color: var(--gold-dark);
        }

    .galeria-new--light .section__ornament {
        background: linear-gradient(to bottom, transparent, var(--gold-dark));
    }

    .galeria-new--light .galeria-new__item--main {
        background: var(--green-deep);
    }

    .galeria-new--light .galeria-new__thumbs {
        background: var(--green-mid);
    }

/* ---- Contacto — CLARO ---- */
.contacto {
    background: var(--cream);
}

/* ---- FAQ — OSCURO ---- */
.faq--dark {
    background: var(--green-deep);
}

.faq__item--dark {
    background: rgba(255,255,255,0.04);
    border-color: rgba(201,169,110,0.12);
}

    .faq__item--dark:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .faq__item--dark .faq__question {
        color: var(--cream);
    }

        .faq__item--dark .faq__question:hover {
            color: var(--gold-light);
        }

.faq__answer--dark p {
    color: rgba(245,240,232,0.65);
}

/* ============================================================
   RESPONSIVE — ajustes para las nuevas secciones
   ============================================================ */
@media (max-width: 1024px) {
    .amen-cards-row {
        grid-template-columns: 1fr 1fr;
    }

        .amen-cards-row .amen-mini-card:last-child {
            grid-column: span 2;
        }

    .inversion__cols--light {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .amen-cards-row {
        grid-template-columns: 1fr;
    }

        .amen-cards-row .amen-mini-card:last-child {
            grid-column: span 1;
        }

    .amen-mini-card {
        padding: 28px 24px;
    }

    .experiencia-amen {
        padding: 70px 0 0;
    }
}