/* =============================================================
   DOXEN – home.css
   Paleta: cream #f5edd8 · gold #c9a84c · dark #1a1a1a
   ============================================================= */

/* ── Recoleta Black (CDN onlinewebfonts) ───────────────────── */
@font-face {
    font-family: "Recoleta Black";
    src: url("https://db.onlinewebfonts.com/t/6988694c95d037f35e9a8deef53179b3.eot");
    src: url("https://db.onlinewebfonts.com/t/6988694c95d037f35e9a8deef53179b3.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/6988694c95d037f35e9a8deef53179b3.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/6988694c95d037f35e9a8deef53179b3.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/6988694c95d037f35e9a8deef53179b3.ttf") format("truetype"),
         url("https://db.onlinewebfonts.com/t/6988694c95d037f35e9a8deef53179b3.svg#Recoleta Black") format("svg");
    font-display: swap;
}
/* ── Reset & Custom Properties ─────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ── Paleta principal ─────────────────────────────────── */
    --bg:           #F5EFE6;   /* Fondo beige */
    --bg-alt:       #F3EBDD;   /* Dorado claro (cards, secciones alternas) */
    --petroleum:    #203A43;   /* Azul petróleo (footer, secciones especiales) */

    /* ── Texto ────────────────────────────────────────────── */
    --white:        #ffffff;
    --dark:         #1a1a1a;   /* negro para texto y títulos */
    --dark-footer:  #203A43;   /* petróleo para footer */
    --text:         #1a1a1a;   /* texto general negro */
    --text-muted:   #7a7a7a;   /* texto secundario gris */
    --accent:       #b68a43;   /* dorado para botones y highlights */
    --accent-dk:    #8f6a2e;   /* dorado oscuro para hover */
    --border:       #e0d8cc;   /* borde sutil sobre el beige */

    --font:         'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
    --font-display: 'Droid Serif', 'Times New Roman', serif;
    --font-recoleta: "Recoleta Black", Georgia, serif;
    --font-serif:   'Droid Serif', 'Times New Roman', Georgia, serif;

    --navbar-h:     66px;
    --r-sm:         8px;
    --r-md:         14px;
    --r-lg:         20px;

    --shadow:       0 2px 16px rgba(0,0,0,.07);
    --shadow-hover: 0 6px 28px rgba(0,0,0,.13);
    --ease:         .24s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1350px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.4rem;
    border-radius: var(--r-sm);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--ease), color var(--ease),
                border-color var(--ease), box-shadow var(--ease),
                transform var(--ease);
    white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-dk);
    border-color: var(--accent-dk);
    box-shadow: 0 4px 18px rgba(201,168,76,.4);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn--outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* outline claro para footer oscuro */
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

.btn__icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* ── Tipografía de sección ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.75rem; }

.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: .45rem;
}

.section-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.section-subtitle {
    margin-top: .6rem;
    color: var(--text-muted);
    font-size: .93rem;
}

.text-accent { color: var(--accent); }

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: var(--bg);
    border-bottom: 1px solid transparent;
    transition: border-color var(--ease), box-shadow var(--ease),
                background var(--ease);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 12px rgba(32,58,67,.1);
    background: rgba(245,239,230,.95);
    backdrop-filter: blur(14px);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.navbar__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.navbar__logo-icon  { width: 45px; height: 45px; }
.navbar__logo-text  {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.navbar__logo-name {
    font-family: var(--font-recoleta);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--dark);
    white-space: nowrap;
}
.navbar__logo-text--accent { color: #b8922a; }
.navbar__logo-version {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: .08em;
    color: var(--muted, #888);
    text-transform: lowercase;
    margin-top: .15rem;
}

/* Links */
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;   /* empuja el menú y el CTA a la derecha */
    margin-right: 1.5rem;
}

.navbar__link {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color var(--ease);
}
.navbar__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width var(--ease);
    border-radius: 2px;
}
.navbar__link:hover            { color: var(--accent); }
.navbar__link:hover::after     { width: 100%; }

/* Active (centro de ayuda en el screenshot aparece en accent) */
.navbar__link--active { color: var(--accent); }
.navbar__link--active::after { width: 100%; }
.navbar__link--redactar { color: var(--accent); font-weight: 700; }

/* CTA */
.navbar__actions { display: flex; align-items: center; gap: .75rem; }
.navbar__cta { padding: .48rem 1.1rem; font-size: .86rem; }

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.navbar__hamburger span {
    display: block;
    width: 23px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.navbar__mobile {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    animation: slideDown .2s ease;
}
.navbar__mobile.open { display: block; }
.navbar__mobile ul   { display: flex; flex-direction: column; gap: 1rem; }
.navbar__mobile .navbar__link { font-size: 1rem; }
.navbar__mobile .btn { width: 100%; justify-content: center; margin-top: .5rem; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   HERO  ─ 2 cols (texto izq | imagen der, full-height)
   ============================================================= */
.hero {
    position: relative;
    min-height: unset;
    background: var(--bg);
    overflow: visible;
    display: flex;
    align-items: stretch;
}

.hero > .container {
    display: flex;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* ── Columna izquierda ──────────────────────────────────────── */
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: calc(var(--navbar-h) + 9.5rem) 3rem 11rem 0;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin: 0;
}
.hero__title--accent { color: #b8922a; }

.hero__desc {
    font-size: clamp(.875rem, 1.8vw, 1rem);
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* ── Botones ────────────────────────────────────────────────── */
.hero__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: .7rem 1.5rem;
    border-radius: 10px;
    border-width: 2px;
    transition: background var(--ease), color var(--ease),
                border-color var(--ease), box-shadow var(--ease),
                transform var(--ease);
}

.hero__buttons .btn--primary {
    background: #b68a43;
    border-color: #b68a43;
    color: #fff;
    box-shadow: 0 4px 18px rgba(182,138,67,.35);
}
.hero__buttons .btn--primary:hover {
    background: #8f6a2e;
    border-color: #8f6a2e;
    box-shadow: 0 6px 24px rgba(143,106,46,.45);
    transform: translateY(-2px);
}

.hero__buttons .btn--outline {
    background: #fff;
    border-color: #aaaaaa;
    border-width: 2px;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.hero__buttons .btn--outline:hover {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    transform: translateY(-2px);
}

/* ── Trust badges ───────────────────────────────────────────── */
.hero__trust {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-top: .5rem;
    flex-wrap: nowrap;
}

.hero__trust-sep {
    width: 1px;
    height: 40px;
    background: #ccc;
    align-self: center;
    flex-shrink: 0;
}

.hero__trust-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--dark);
}

.hero__trust-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--dark);
}

.hero__trust-item div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.hero__trust-item strong {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero__trust-item span {
    font-size: .8rem;
    color: #666;
    line-height: 1.3;
}

/* ── Columna derecha ────────────────────────────────────────── */
.hero__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: visible;
    margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
}

.hero__photo {
    width: 105%;
    height: auto;
    max-width: none;
    border-radius: 0;
    display: block;
    transform: translateX(-3%);
}

/* degradado izquierdo: fondo beige → transparente */
.hero__visual::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -15%;
    right: 0;
    background: linear-gradient(to right, #F5EFE6 0%, #F5EFE6 10%, transparent 30%);
    pointer-events: none;
}

/* =============================================================
   FEATURES BAR  — píldora centrada sobre fondo beige
   ============================================================= */
.features-bar {
    background: var(--bg);        /* mismo fondo beige de la página */
    padding: 1.5rem 0;
    border: none;
}

.features-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-around; /* ítems distribuidos en todo el ancho */
    flex-wrap: wrap;
    gap: 1rem;

    /* píldora ancho completo del container */
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: .85rem 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    width: 100%;
}

.features-bar__item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}

.features-bar__icon {
    width: 45px; height: 45px;
    flex-shrink: 0;
}

/* sin divisores — eliminados del diseño */
.features-bar__divider { display: none; }

/* =============================================================
   DOCUMENTOS
   ============================================================= */
.docs-section {
    padding: 2.5rem 0;
    background: var(--white);   /* fondo blanco */
}

/* Título de la sección */
.docs-section .section-title {
    font-family: var(--font-recoleta);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 900;
    color: var(--dark);
}

/* Subtítulo de la sección */
.docs-section .section-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: .97rem;
    color: var(--text-muted);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.doc-card {
    background: var(--white);
    border: 1.5px solid #d6d6d6;
    border-radius: var(--r-md);
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgb(0 0 0 / 26%);
    transition: transform var(--ease), box-shadow var(--ease);
}
.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

.doc-card__icon-wrap {
    flex-shrink: 0;
    width: 60px; height: 52px;
    background: transparent;        /* sin fondo en el icono */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.doc-card__icon-wrap img { width: 60px; height: 60px; }

.doc-card__title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
}

/* =============================================================
   TRES PASOS
   ============================================================= */
.steps-section {
    padding: 2.5rem 0;
    background: var(--bg);
}

/* Contenedor bordeado con bracket izquierdo decorativo */
.steps-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px 1fr;
    align-items: center;
    gap: 1.5rem;
    overflow: visible;
    /* sin línea arriba, pero con curva en las esquinas superiores */
    border-top: none;
    border-left:   2px solid var(--dark);
    border-right:  2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    border-radius: 24px;             /* curva sube por los lados sin cerrar arriba */
    padding: 6rem 1.75rem 1.25rem 2.25rem;
    background: var(--bg);
    margin-left: 0;
    margin-top: 4.5rem;
}

.steps-box::before { display: none; }

/* Flecha: columna 40px, img se sale con width+height forzados */
.step-arrow {
    position: relative;
    z-index: 10;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    margin-top: -170px;
}
.step-arrow__img {
    /* forzar dimensiones exactas ignorando viewBox interno del SVG */
    width: 250px !important;
    height: 160px !important;
    min-width: 180px;
    flex-shrink: 0;
    margin-left: -70px;
    margin-right: -40px;
    position: relative;
    z-index: 10;
    object-fit: fill;
    pointer-events: none;
}

/* Card de cada paso */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: .25rem .5rem;
}

/* Icono centrado arriba */
.step-card__icon-wrap {
    width: 70px; height: 58px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -125px auto .75rem;
}
.step-card__icon-wrap img {
    width: 70px; height: 70px;
    object-fit: contain;
}

/* Número + título en la misma fila */
.step-card__header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .4rem;
}

/* Número dorado inline con el título */
.step-card__number {
    width: 26px; height: 26px;
    background: var(--accent);
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(201,168,76,.4);
    flex-shrink: 0;
}

.step-card__title {
    font-family: var(--font-serif);
    font-size: .97rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    white-space: nowrap;   /* título en una sola línea */
}

.step-card__desc {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: calc(26px + .6rem); /* indenta bajo el número */
}

/* =============================================================
   POR QUÉ DOXEN
   ============================================================= */
.why-section {
    padding: 0.5rem 2.5rem 2.5rem 2.5rem;
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.why-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--ease), box-shadow var(--ease);
}
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.why-card__icon-wrap {
    width: 95px; height: 35px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    padding: 12px;
    transition: background var(--ease);
}
.why-card:hover .why-card__icon-wrap { background: var(--bg-alt); }
.why-card__icon-wrap img { width: 65px; height: 65px; }

.why-card__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}

.why-card__desc {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* =============================================================
   FOOTER
   ============================================================= */
/* ── Footer (old petroleum - kept for .footer class used in CTA section) ── */
.footer {
    background: var(--petroleum);
    padding: 3.5rem 0 2rem;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
}
.footer__brand         { font-weight: 900; color: var(--white); }
.footer__brand--accent { color: var(--accent); }
.footer__subtitle {
    font-size: .92rem;
    color: #a89e88;
    margin-top: -.25rem;
}
.footer__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .5rem;
}
.footer__copy {
    font-size: .78rem;
    color: #666;
    margin-top: 1.5rem;
}

/* ── Site Footer (nuevo diseño global) ──────────────────────── */
.site-footer {
    background: var(--white, #fff);
    border-top: 1px solid rgba(224, 216, 204, .5);
    padding: 2rem 0;
}
.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
}
.site-footer__brand {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.site-footer__logo-icon {
    width: 36px;
    height: 36px;
}
.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer__brand-name {
    font-family: var(--font-recoleta, "Recoleta Black", Georgia, serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark, #1a1a1a);
    line-height: 1;
    letter-spacing: .02em;
}
.site-footer__brand-accent { color: #b8922a; }
.site-footer__brand-tagline {
    font-family: var(--font-display, 'Droid Serif', serif);
    font-size: .72rem;
    color: var(--text-muted, #7a7a7a);
    font-style: italic;
    letter-spacing: .02em;
    margin-top: -.05rem;
}
.site-footer__copy {
    font-size: .78rem;
    color: #999;
}
.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .35rem .5rem;
}
.site-footer__sep {
    color: #ccc;
    font-size: .75rem;
}
.site-footer__link {
    font-size: .76rem;
    color: var(--text-muted, #7a7a7a);
    text-decoration: none;
    transition: color .15s;
}
.site-footer__link:hover { color: var(--dark, #1a1a1a); text-decoration: underline; }
.site-footer__link--reclamaciones {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: #b8922a;
    font-weight: 600;
}
.site-footer__link--reclamaciones:hover { color: #9a7820; }

/* ── Páginas Legales ──────────────────────────────────────────── */
.legal-page {
    padding: 3rem 0 4rem;
    min-height: 60vh;
}
.legal-page__container {
    max-width: 760px;
    margin: 0 auto;
}
.legal-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.legal-page__breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.legal-page__breadcrumb a:hover { text-decoration: underline; }
.legal-page__header {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0d8cc;
    padding-bottom: 1.5rem;
}
.legal-page__title {
    font-family: var(--font-recoleta, "Recoleta Black", Georgia, serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark, #1a1a1a);
    margin: 0 0 .5rem;
}
.legal-page__meta {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
}
.legal-page__body {
    font-size: .92rem;
    line-height: 1.8;
    color: #333;
}
.legal-page__body h2 { font-size: 1.15rem; font-weight: 700; margin: 2rem 0 .5rem; color: var(--dark); }
.legal-page__body h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .4rem; color: var(--dark); }
.legal-page__body p  { margin: 0 0 .85rem; }
.legal-page__body ul, .legal-page__body ol { padding-left: 1.5rem; margin: 0 0 .85rem; }
.legal-page__body li { margin-bottom: .35rem; }
.legal-page__footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0d8cc;
    font-size: .83rem;
}
.legal-page__footer-links a {
    color: #b8922a;
    text-decoration: none;
    font-weight: 600;
}
.legal-page__footer-links a:hover { text-decoration: underline; }

/* ── Libro de Reclamaciones (público) ────────────────────────── */
.reclamaciones-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #fff3cd;
    color: #856404;
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 20px;
    border: 1px solid #ffd966;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.reclamacion-success {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: #d1e7dd;
    border: 1px solid #a3cfbb;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.75rem;
    color: #146c43;
}
.reclamacion-success__title { font-weight: 700; font-size: .9rem; margin: 0 0 .2rem; }
.reclamacion-success__msg   { font-size: .84rem; margin: 0; }
.reclamacion-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 600px) { .reclamacion-info-grid { grid-template-columns: 1fr; } }
.reclamacion-info-card {
    border-radius: 10px;
    padding: 1rem 1.15rem;
    font-size: .84rem;
}
.reclamacion-info-card h3 { font-size: .88rem; font-weight: 700; margin: 0 0 .4rem; }
.reclamacion-info-card p  { margin: 0; color: #555; line-height: 1.5; }
.reclamacion-info-card--reclamo { background: #fff8e1; border: 1px solid #ffe082; color: #7a5600; }
.reclamacion-info-card--reclamo h3 { color: #7a5600; }
.reclamacion-info-card--queja { background: #fce4ec; border: 1px solid #f48fb1; color: #7b1039; }
.reclamacion-info-card--queja h3 { color: #7b1039; }
.reclamacion-form {
    background: var(--white, #fff);
    border: 1px solid #e0d8cc;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.reclamacion-form__section-title {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
}
.reclamacion-form__section-title:first-child { margin-top: 0; }
.reclamacion-form__step {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #b8922a;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.req { color: #c0392b; }
.reclamacion-tipo-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
@media (max-width: 500px) { .reclamacion-tipo-group { grid-template-columns: 1fr; } }
.reclamacion-tipo-option {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: .85rem 1rem;
    border: 2px solid #e0d8cc;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    font-size: .85rem;
}
.reclamacion-tipo-option input[type="radio"] { display: none; }
.reclamacion-tipo-option strong { font-size: .88rem; font-weight: 700; color: var(--dark); }
.reclamacion-tipo-option span   { font-size: .78rem; color: var(--text-muted); }
.reclamacion-tipo-option.is-selected {
    border-color: #b8922a;
    background: #fef9ec;
}
.reclamacion-tipo-option.is-selected strong { color: #b8922a; }
.reclamacion-legal-notice {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: .9rem 1rem;
    font-size: .78rem;
    color: #555;
    line-height: 1.55;
    margin: 1.25rem 0;
    flex-shrink: 0;
}
.reclamacion-legal-notice svg { flex-shrink: 0; margin-top: .1rem; color: #6c757d; }
.reclamacion-legal-notice p { margin: 0; }
.reclamacion-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #b8922a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .75rem 1.75rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    width: 100%;
    justify-content: center;
}
.reclamacion-submit-btn:hover { background: #9a7820; }

/* =============================================================
   ANIMACIONES (Intersection Observer)
   ============================================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
[data-animate="fade-left"]  { transform: translateX(-24px); }
[data-animate="fade-right"] { transform: translateX(24px); }
[data-animate].visible {
    opacity: 1;
    transform: none;
}

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

/* ── CTA Final ──────────────────────────────────────────────── */
.cta-final {
    background: var(--dark);
    padding: 5rem 1.5rem;
    text-align: center;
}
.cta-final__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cta-final__title {
    font-family: 'Recoleta Black', serif;
    font-size: 2.6rem;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
}
.cta-final__brand { color: var(--white); }
.cta-final__brand--accent { color: var(--accent); }
.cta-final__subtitle {
    font-size: .97rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    max-width: 480px;
}
.cta-final__buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .5rem;
}
.btn--outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn--outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

/* ── END CTA Final ──────────────────────────────────────────── */

/* ── 1024px (tablet landscape) ── */
@media (max-width: 1024px) {
    .why-grid  { grid-template-columns: repeat(2, 1fr); }

    /* Hero: columna única, imagen arriba */
    .hero { min-height: unset; overflow: hidden; }
    .hero > .container { flex-direction: column; padding-inline: 0; }
    .hero__inner { grid-template-columns: 1fr; gap: 0; }

    .hero__visual {
        order: -1;
        width: 100%;
        margin-right: 0;
        height: 50vw;
        overflow: hidden;
        display: block;
        position: relative;
    }
    .hero__photo {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 80%;
        transform: none;
    }
    .hero__visual::after {
        background: linear-gradient(to bottom, transparent 55%, #F5EFE6 100%);
        left: 0;
    }

    .hero__content {
        order: 1;
        padding: 2rem clamp(1rem, 4vw, 2rem) 3rem;
    }
    .hero__buttons { flex-wrap: wrap; }
    .hero__trust { flex-wrap: wrap; gap: .75rem; }
    .hero__trust-sep { display: none; }

    /* ── Steps tablet: reducir flechas y padding ── */
    .steps-box {
        padding: 5rem 1.25rem 1.25rem;
        gap: 1rem;
    }
    .step-arrow__img {
        width: 180px !important;
        height: 120px !important;
    }
    .step-arrow {
        margin-top: -130px;
    }
}

/* ── 768px (tablet portrait / móvil grande) ── */
@media (max-width: 768px) {
    :root { --navbar-h: 58px; }

    .navbar__menu      { display: none; }
    .navbar__hamburger { display: flex; }

    /* Hero: imagen arriba, texto abajo */
    .hero { min-height: unset; overflow: hidden; }
    .hero > .container { flex-direction: column; padding-inline: 0; }
    .hero__inner { grid-template-columns: 1fr; gap: 0; }

    /* Imagen primero */
    .hero__visual {
        order: -1;
        width: 100%;
        margin-right: 0;
        height: 60vw;
        overflow: hidden;
        display: block;
        position: relative;
    }
    .hero__photo {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 80%;
        transform: none;
    }
    .hero__visual::after {
        background: linear-gradient(to bottom, transparent 60%, #F5EFE6 100%);
        left: 0;
    }

    /* Contenido debajo */
    .hero__content {
        padding: 1.5rem clamp(1rem, 4vw, 2rem) 2.5rem;
        order: 1;
    }
    .hero__title { font-size: clamp(1.6rem, 5vw, 2rem); }
    .hero__trust { flex-wrap: wrap; gap: .75rem; }
    .hero__trust-sep { display: none; }
    .hero__buttons { flex-wrap: wrap; }
    .hero__buttons .btn { min-width: 140px; }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    /* ── Steps: layout vertical ── */
    .steps-box {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 1.5rem;
        margin-top: 3.5rem;
        gap: 0;
    }
    .step-card__icon-wrap {
        margin: -3rem auto .6rem;
    }
    /* Flecha SVG rotada hacia abajo, sin márgenes negativos */
    .step-arrow {
        align-self: center;
        margin-top: 0;
        height: 90px;
        overflow: visible;
        transform: none;
        justify-content: center;
    }
    .step-arrow__img {
        display: block;
        width: 90px !important;
        height: 90px !important;
        min-width: unset;
        margin-left: 150px;
        margin-right: 0;
        transform: rotate(90deg);
    }

    .why-grid { grid-template-columns: 1fr; }

    .features-bar__divider { display: none; }
}

/* ── 480px ── */
/* ── 480px (móvil) ── */
@media (max-width: 480px) {
    .hero__visual { height: 70vw; }
    .hero__title { font-size: 1.55rem; }
    .hero__buttons { flex-direction: column; align-items: stretch; }
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .hero__trust { flex-direction: column; gap: .6rem; }
}
