/* landing.css — Rediseño Camino B (calidad editorial / banca privada).
 *
 * Identidad de marca: "MCBR" como elemento tipográfico (Lora SemiBold cobre,
 * letter-spacing editorial). NO se usa logo bitmap.
 *
 * Estructura:
 * 1. Tokens (paleta + tipografía coherentes con dossier PDF).
 * 2. Componentes editoriales (eyebrow, h2, encabezados, líneas decorativas).
 * 3. Secciones específicas (hero con overlay, pasos con líneas verticales,
 *    dossier showcase con páginas reales, sobre mí con foto + 3 stats +
 *    pull quote, FAQ con sombras, WhatsApp marino).
 * 4. Form de contacto (sobre fondo marino).
 * 5. Footer.
 *
 * Mobile-first. Breakpoint principal: 768px (md de Tailwind).
 */

/* === Fuentes locales === */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Lora-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Lora-SemiBold.woff2') format('woff2');
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1A2B4A;
    background: #F8F7F2;
    -webkit-font-smoothing: antialiased;
}

/* ====================================================================== */
/* MARCA TIPOGRÁFICA "MCBR"                                                */
/* ====================================================================== */

.mcbr-bloque { display: inline-flex; flex-direction: column; gap: 4px; }
.mcbr-marca {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    color: #B8945A;
    letter-spacing: 5px;
    line-height: 1;
}
.mcbr-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}
/* Variantes según contexto */
.mcbr-nav .mcbr-marca { font-size: 22px; }
.mcbr-hero .mcbr-marca { font-size: 28px; color: #B8945A; }
.mcbr-hero .mcbr-tagline { font-size: 11px; color: rgba(248, 247, 242, 0.75); }
.mcbr-footer .mcbr-marca { font-size: 24px; }
.mcbr-footer .mcbr-tagline { color: rgba(248, 247, 242, 0.55); font-size: 10px; }

/* ====================================================================== */
/* NAV                                                                     */
/* ====================================================================== */

#nav { transition: background 0.4s ease, backdrop-filter 0.4s ease; }
.nav-transparent {
    background: transparent;
    backdrop-filter: none;
}
.nav-solid {
    background: rgba(26, 43, 74, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(184, 148, 90, 0.15);
}
/* Cuando es transparente sobre el hero (que es marino), los textos van blancos.
   Cuando es solid, también. Entonces los links siempre claros excepto en
   secciones blancas que vendrán por debajo (donde el nav también queda solid). */
.nav-link {
    font-size: 14px;
    color: #FAF7F0;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: #B8945A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-link:hover { color: #B8945A; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1A2B4A;
    background: #B8945A;
    padding: 9px 20px;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(184, 148, 90, 0.35);
}

/* ====================================================================== */
/* HERO                                                                    */
/* ====================================================================== */

.hero-seccion {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
}
/* Background decorativo: gradiente marino → cobre con textura topográfica
   sutil que sugiere el cerro y el atardecer sin necesitar foto real. */
.hero-bg-decorative {
    position: absolute;
    inset: 0;
    background:
        /* atardecer: cobre tenue abajo, marino arriba */
        linear-gradient(180deg,
            #0F1A2E 0%,
            #1A2B4A 50%,
            #4A3F3D 80%,
            #6B5A47 100%);
}
.hero-bg-decorative::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Textura topográfica: líneas curvas concéntricas en cobre tenue.
       Generadas con SVG inline → patrón data-URI. */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' opacity='0.08'><g fill='none' stroke='%23B8945A' stroke-width='0.8'><path d='M-50,200 Q200,140 400,200 T850,200'/><path d='M-50,260 Q200,200 400,260 T850,260'/><path d='M-50,320 Q200,260 400,320 T850,320'/><path d='M-50,380 Q200,320 400,380 T850,380'/><path d='M-50,440 Q200,380 400,440 T850,440'/><path d='M-50,500 Q200,440 400,500 T850,500'/></g></svg>");
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 26, 46, 0.55) 0%,
        rgba(26, 43, 74, 0.65) 60%,
        rgba(26, 43, 74, 0.85) 100%);
}
.hero-contenido {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    width: 100%;
}
.mcbr-hero {
    display: inline-flex;
    margin-bottom: 50px;
    align-items: center;
}
.hero-headline {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-size: 40px;
    margin-bottom: 22px;
}
.hero-subhead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(248, 247, 242, 0.85);
    line-height: 1.5;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 44px;
}
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-headline { font-size: 64px; margin-bottom: 26px; }
    .hero-subhead { font-size: 20px; margin-bottom: 52px; }
    .hero-ctas { flex-direction: row; justify-content: center; gap: 28px; }
}

.btn-primario {
    display: inline-block;
    background: #B8945A;
    color: #1A2B4A;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 9999px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(184, 148, 90, 0.4);
}
.btn-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 148, 90, 0.55);
}
.btn-secundario-link {
    color: #FAF7F0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    padding-bottom: 2px;
}
.btn-secundario-link:hover {
    color: #B8945A;
    border-bottom-color: #B8945A;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(184, 148, 90, 0.7);
    animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ====================================================================== */
/* COMPONENTES EDITORIALES (eyebrow, h2, encabezados)                      */
/* ====================================================================== */

.seccion-encabezado {
    text-align: center;
    margin-bottom: 56px;
}
.seccion-encabezado-izq { text-align: left; margin-bottom: 28px; }
.seccion-encabezado-marino {
    text-align: center;
    margin-bottom: 36px;
}

.seccion-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #B8945A;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 6px;
    border-bottom: 1px solid #B8945A;
    margin-bottom: 18px;
}
.seccion-eyebrow--claro { color: #B8945A; }

.seccion-h2 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 32px;
    color: #1A2B4A;
    line-height: 1.15;
    letter-spacing: -0.015em;
}
.seccion-h2--claro { color: #FFFFFF; }
@media (min-width: 768px) {
    .seccion-h2 { font-size: 42px; }
}

/* Secciones con fondos / padding consistente */
.seccion-blanca { background: #FFFFFF; padding: 80px 0; }
.seccion-clara { background: #FAF7F0; padding: 80px 0; }
.seccion-marino { background: #1A2B4A; padding: 80px 0; }
.seccion-whatsapp-marino { background: #0F1A2E; padding: 70px 0; }
.seccion-footer { background: #0F1A2E; padding: 60px 0 40px; }
@media (min-width: 768px) {
    .seccion-blanca, .seccion-clara, .seccion-marino { padding: 110px 0; }
}

/* ====================================================================== */
/* CÓMO FUNCIONA — 3 columnas con líneas verticales cobre                  */
/* ====================================================================== */

.pasos-grid {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}
.pasos-grid > .paso-col {
    padding: 36px 8px;
    text-align: center;
    border-bottom: 1px solid rgba(184, 148, 90, 0.25);
}
.pasos-grid > .paso-col:last-child { border-bottom: none; }

@media (min-width: 768px) {
    .pasos-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .pasos-grid > .paso-col {
        padding: 24px 36px;
        border-bottom: none;
        border-right: 1px solid rgba(184, 148, 90, 0.25);
    }
    .pasos-grid > .paso-col:last-child { border-right: none; }
}

.paso-num {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 64px;
    color: #B8945A;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .paso-num { font-size: 80px; }
}
.paso-icono {
    width: 44px;
    height: 44px;
    margin: 0 auto 22px;
    color: #1A2B4A;
    opacity: 0.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.paso-titulo {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 19px;
    color: #1A2B4A;
    margin-bottom: 10px;
    line-height: 1.3;
}
.paso-texto {
    font-size: 14.5px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ====================================================================== */
/* LO QUE RECIBES — lista + dossier showcase                               */
/* ====================================================================== */

.lista-recibes { list-style: none; padding: 0; margin-top: 8px; }
.lista-recibes-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 148, 90, 0.15);
    color: #1A2B4A;
    font-size: 15px;
    line-height: 1.5;
}
.lista-recibes-item:last-child { border-bottom: none; }
.lista-recibes-item > span { flex: 1; }
.check-cobre {
    color: #B8945A;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Showcase del dossier: 2 páginas reales con composición elegante */
.dossier-showcase {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    aspect-ratio: 1.1 / 1;
    perspective: 1200px;
}
.dossier-pagina {
    position: absolute;
    background: #FFFFFF;
    box-shadow:
        0 4px 12px rgba(26, 43, 74, 0.10),
        0 22px 60px -15px rgba(26, 43, 74, 0.30);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.5s ease;
}
.dossier-pagina img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.dossier-pagina--2-back {
    width: 60%;
    aspect-ratio: 216 / 279;
    top: 0;
    right: 0;
    transform: rotate(4deg);
    z-index: 1;
}
.dossier-pagina--1-front {
    width: 70%;
    aspect-ratio: 216 / 279;
    bottom: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}
.dossier-showcase:hover .dossier-pagina--1-front {
    transform: rotate(-1deg) translateY(-6px);
}
.dossier-showcase:hover .dossier-pagina--2-back {
    transform: rotate(2deg) translateX(6px);
}
.dossier-caption {
    text-align: center;
    margin-top: 36px;
    font-size: 13px;
    color: #6B7280;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ====================================================================== */
/* SOBRE MÍ — foto real + 3 stats + pull quote                             */
/* ====================================================================== */

.sobre-mi-seccion {
    background: linear-gradient(180deg, #FAF7F0 0%, #F8F7F2 100%);
    padding: 80px 0;
}
@media (min-width: 768px) {
    .sobre-mi-seccion { padding: 110px 0; }
}

.foto-missael-wrapper {
    position: relative;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .foto-missael-wrapper { max-width: 300px; }
}
.foto-missael-wrapper::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1.5px solid #B8945A;
    border-radius: 50%;
    opacity: 0.6;
}
.foto-missael {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(26, 43, 74, 0.18);
    display: block;
}

.bio-texto {
    font-size: 17px;
    line-height: 1.65;
    color: #1A2B4A;
}
.bio-texto p + p { margin-top: 16px; }
.bio-texto strong { color: #1A2B4A; font-weight: 600; }

.stats-editoriales {
    display: flex;
    gap: 0;
    margin-top: 32px;
    flex-wrap: wrap;
}
.stat {
    flex: 1;
    min-width: 110px;
    padding: 4px 0;
}
.stat-num {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 30px;
    color: #1A2B4A;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}
.stat-divisor {
    width: 1px;
    background: rgba(184, 148, 90, 0.4);
    margin: 0 18px;
    align-self: stretch;
}
@media (max-width: 767px) {
    .stat-divisor { display: none; }
    .stat {
        flex: 0 0 33.33%;
        text-align: left;
    }
}

/* Pull quote: cita destacada con comillas grandes */
.pull-quote {
    margin: 80px auto 0;
    max-width: 720px;
    text-align: center;
    position: relative;
    padding-top: 50px;
}
.pull-quote-marca {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 96px;
    color: #B8945A;
    line-height: 0.5;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}
.pull-quote p {
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    color: #1A2B4A;
    line-height: 1.4;
    margin-bottom: 18px;
}
@media (min-width: 768px) {
    .pull-quote p { font-size: 28px; }
}
.pull-quote-firma {
    font-size: 13px;
    color: #B8945A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ====================================================================== */
/* FAQ — cards blancas con sombra editorial                                */
/* ====================================================================== */

.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(26, 43, 74, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-bottom 0.25s ease;
    border-bottom: 2px solid transparent;
}
.faq-item:hover, .faq-item[open] {
    box-shadow: 0 6px 24px rgba(26, 43, 74, 0.10);
}
.faq-item[open] { border-bottom-color: #B8945A; }
.faq-summary {
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    gap: 16px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }
.faq-pregunta {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    color: #1A2B4A;
    font-size: 18px;
    line-height: 1.3;
    flex: 1;
}
@media (min-width: 768px) {
    .faq-pregunta { font-size: 20px; }
}
/* Toggle minimal: solo dos líneas (vertical desaparece al abrir) */
.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}
.faq-toggle::before, .faq-toggle::after {
    content: "";
    position: absolute;
    background: #B8945A;
    transition: opacity 0.25s ease;
}
.faq-toggle::before {
    top: 50%; left: 0; right: 0;
    height: 1.5px;
    transform: translateY(-50%);
}
.faq-toggle::after {
    left: 50%; top: 0; bottom: 0;
    width: 1.5px;
    transform: translateX(-50%);
}
.faq-item[open] .faq-toggle { transform: rotate(180deg); }
.faq-item[open] .faq-toggle::after { opacity: 0; }

.faq-respuesta {
    padding: 0 26px 24px;
    color: #6B7280;
    line-height: 1.65;
    font-size: 16px;
}

/* ====================================================================== */
/* FORM "Hablemos"                                                         */
/* ====================================================================== */

.form-intro {
    color: rgba(250, 247, 240, 0.75);
    margin-top: 6px;
    font-size: 16px;
}
.form-grid { display: flex; flex-direction: column; gap: 18px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #FAF7F0;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-label .opcional {
    font-weight: 400;
    color: rgba(250, 247, 240, 0.55);
    font-size: 12px;
}
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 13px 16px;
    color: #FFFFFF;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.32); }
.form-input:focus {
    outline: none;
    border-color: #B8945A;
    background: rgba(255, 255, 255, 0.10);
}
.form-input.invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.07);
}
.form-error {
    color: #fca5a5;
    font-size: 12px;
    margin-top: 6px;
    min-height: 14px;
}
.btn-form-submit {
    width: 100%;
    background: #B8945A;
    color: #1A2B4A;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 9999px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    margin-top: 12px;
}
.btn-form-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(184, 148, 90, 0.45);
}
.btn-form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.btn-form-submit .submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26, 43, 74, 0.3);
    border-top-color: #1A2B4A;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.btn-form-submit.loading .submit-spinner { display: inline-block; }
.btn-form-submit.loading .submit-label::after { content: "..."; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form success */
.form-success {
    margin-top: 32px;
    text-align: center;
    background: rgba(184, 148, 90, 0.08);
    border: 1px solid rgba(184, 148, 90, 0.3);
    border-radius: 8px;
    padding: 36px 24px;
}
.check-grande { margin: 0 auto 16px; }
.form-success-titulo {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.form-success-texto {
    color: rgba(250, 247, 240, 0.85);
    margin-bottom: 24px;
    line-height: 1.6;
}
.btn-success-whatsapp {
    display: inline-block;
    background: #B8945A;
    color: #1A2B4A;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-success-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(184, 148, 90, 0.4);
}

.form-error-server {
    margin-top: 18px;
    text-align: center;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 14px;
    color: rgba(252, 165, 165, 0.95);
}
.form-error-server a { color: #B8945A; text-decoration: underline; }

/* ====================================================================== */
/* WhatsApp marino oscuro (NO verde brutal)                                */
/* ====================================================================== */

.seccion-whatsapp-marino { color: #FFFFFF; }
.whatsapp-icon-cobre {
    margin: 0 auto 24px;
    display: block;
    opacity: 0.95;
}
.seccion-sub-claro {
    color: rgba(248, 247, 242, 0.7);
    font-size: 16px;
    margin: 8px 0 32px;
}
.btn-whatsapp-marino {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    background: #B8945A;
    color: #0F1A2E;
    padding: 16px 36px;
    border-radius: 9999px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 18px rgba(184, 148, 90, 0.30);
}
.btn-whatsapp-marino:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(184, 148, 90, 0.45),
        0 0 28px rgba(184, 148, 90, 0.25);   /* glow sutil */
}

/* ====================================================================== */
/* Footer                                                                  */
/* ====================================================================== */

.seccion-footer { color: rgba(248, 247, 242, 0.85); }
.footer-tagline {
    color: rgba(248, 247, 240, 0.5);
    font-size: 13px;
    font-style: italic;
    margin-top: 14px;
    line-height: 1.5;
    max-width: 240px;
}
.footer-h3 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.footer-p {
    font-size: 14px;
    color: rgba(248, 247, 240, 0.65);
    line-height: 1.6;
    margin-bottom: 6px;
}
.footer-p--small { font-size: 12px; color: rgba(248, 247, 240, 0.4); }
.footer-link { color: #B8945A; text-decoration: none; }
.footer-link:hover { text-decoration: underline; }
.footer-disclaimer {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 22px 20px 0;
    border-top: 1px solid rgba(248, 247, 240, 0.08);
}
.footer-disclaimer p {
    font-size: 11px;
    color: rgba(248, 247, 240, 0.4);
    line-height: 1.55;
    text-align: center;
    font-style: italic;
}

/* ====================================================================== */
/* Reveal-on-scroll                                                        */
/* ====================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
