:root {
    --gold: #b39a22;
    --gold2: #d3bd4a;
    --soft: #f5efd9;
    --ink: #242222;
    --muted: #686563;
    --line: #e8dfca;
    --bg: #fbfaf7;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
    --shadow: 0 22px 60px rgba(31, 28, 24, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}

.section {
    padding: 90px 0;
}

.eyebrow {
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
}

.display {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 6vw, 6.2rem);
    line-height: .95;
    margin: 14px 0 20px;
}

.h2 {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    margin: 0 0 18px;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 760px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    border: 1px solid transparent;
    margin: 4px;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
    box-shadow: 0 14px 28px rgba(179, 154, 34, .24);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(179, 154, 34, .30);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--soft);
    transform: translateY(-2px);
}

/* NAVBAR */

.topbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(1160px, 92%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(179, 154, 34, .18);
    border-radius: 28px;
    box-shadow: 0 14px 40px rgba(28, 25, 22, .08);
    backdrop-filter: blur(16px);
}

.brand img {
    width: 180px;
    height: 58px;
    object-fit: contain;
    object-position: left;
}

.main-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .91rem;
}

.main-nav a:hover,
.nav-cta {
    background: var(--soft);
    color: #7a650d;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #222;
    margin: 5px;
}

/* HERO REAL CON IMAGEN */

.hero,
.hero-real {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 130px 0 70px;
}

.hero-real .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.98) 0%,
        rgba(255, 253, 248, 0.94) 24%,
        rgba(255, 253, 248, 0.62) 45%,
        rgba(255, 253, 248, 0.18) 100%
    );
    z-index: 1;
}

.hero-real::before {
    content: "";
    position: absolute;
    right: -110px;
    top: -70px;
    width: 500px;
    height: 500px;
    background: radial-gradient(var(--gold) 1px, transparent 1.3px);
    background-size: 12px 12px;
    opacity: .16;
    transform: rotate(18deg);
    z-index: 1;
}

.hero-real .container {
    position: relative;
    z-index: 2;
}

.hero-grid,
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-real .hero-grid {
    grid-template-columns: minmax(300px, 500px) 1fr;
}

.hero-content {
    max-width: 500px;
}

.hero-real .hero-content {
    padding-top: 20px;
    padding-bottom: 25px;
}

.hero-real .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-real .display {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    line-height: .95;
    color: #222;
    letter-spacing: -.045em;
}

.hero-real .lead {
    max-width: 455px;
    margin: 0;
    color: #555;
    font-size: .95rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 26px;
}

.hero-real .btn {
    min-height: 42px;
    padding: 0 20px;
    font-size: .9rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 460px;
    margin-top: 0;
    padding: 14px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(196, 163, 25, .22);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    backdrop-filter: blur(8px);
}

.stat {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 10px 0 0;
    border-right: 1px solid rgba(0, 0, 0, .08);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat span {
    display: block;
    color: #777;
    font-size: .72rem;
    line-height: 1.25;
}

/* HERO ANTIGUO POR SI ALGUNA PÁGINA LO USA */

.hero-img {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 38px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.hero-img img {
    height: 540px;
    width: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* GRIDS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

/* BANNERS Y SECCIONES */

.banner {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #fff, #f4ecd0);
    position: relative;
}

.banner:after {
    content: "";
    position: absolute;
    right: -110px;
    top: -70px;
    width: 500px;
    height: 500px;
    background: radial-gradient(var(--gold) 1px, transparent 1.3px);
    background-size: 12px 12px;
    opacity: .22;
    transform: rotate(18deg);
}

.section-soft {
    background: linear-gradient(180deg, #fff, #f8f2df);
}

/* CARDS */

.card,
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 12px 38px rgba(45, 40, 35, .06);
    padding: 26px;
}

.card h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    line-height: 1.05;
    margin: 0 0 10px;
}

.card p {
    color: var(--muted);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--soft), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 16px;
}

/* FEATURE */

.feature {
    background: linear-gradient(135deg, #242222, #5c5018);
    color: #fff;
    border-radius: 36px;
    padding: 42px;
    box-shadow: var(--shadow);
}

.feature p {
    color: rgba(255, 255, 255, .78);
}

/* IMAGE PANEL */

.image-panel {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* LISTAS */

.list {
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.list li {
    position: relative;
    padding: 8px 0 8px 26px;
    color: var(--muted);
}

.list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

/* FORMULARIOS */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    font: inherit;
    background: #fff;
}

.field textarea {
    min-height: 130px;
}

.alert {
    padding: 14px 18px;
    border-radius: 18px;
    margin: 18px 0;
}

.alert.success {
    background: #edf8ef;
    color: #1b6b32;
}

.alert.error {
    background: #fff0f0;
    color: #8a1d1d;
}

/* CURSOS */

.course-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-cover {
    height: 210px;
    background: linear-gradient(135deg, #272423, #ad931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.course-cover strong {
    font-family: var(--serif);
    font-size: 2.1rem;
    text-align: center;
    padding: 20px;
}

.course-body {
    padding: 26px;
}

.price {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold);
    margin: 8px 0 16px;
}

/* DASHBOARD */

.dashboard {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 24px;
}

.dash-menu {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 16px;
    position: sticky;
    top: 120px;
    height: max-content;
}

.dash-menu a {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 800;
}

.dash-menu a:hover {
    background: var(--soft);
    color: #75610b;
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.table th,
.table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.table th {
    background: #fbf5df;
    color: #765f0c;
}

/* FOOTER */

.footer {
    background: #171514;
    color: #fff;
    padding: 70px 0 24px;
}

.footer-grid {
    width: min(1160px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 210px;
    filter: brightness(1.35);
    margin-bottom: 16px;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, .72);
}

.footer h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
}

.footer-bottom {
    width: min(1160px, 92%);
    margin: 35px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .55);
}

/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .28);
    z-index: 60;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .main-nav {
        display: none;
        position: fixed;
        left: 4%;
        right: 4%;
        top: 96px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero,
    .hero-real {
        min-height: auto;
        padding: 115px 0 55px;
        background-position: 68% center;
    }

    .hero-real .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.98) 0%,
            rgba(255, 253, 248, 0.94) 55%,
            rgba(255, 253, 248, 0.78) 100%
        );
    }

    .hero-grid,
    .hero-real .hero-grid,
    .grid-2,
    .dashboard {
        grid-template-columns: 1fr;
    }

    .hero-real .hero-content {
        padding-top: 45px;
        padding-bottom: 35px;
    }

    .hero-real .display {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
        padding-bottom: 10px;
    }

    .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-img img {
        height: 420px;
    }

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

@media (max-width: 620px) {
    .brand img {
        width: 145px;
    }

    .section {
        padding: 70px 0;
    }

    .hero,
    .hero-real {
        padding-top: 110px;
        padding-bottom: 45px;
        background-position: 72% center;
    }

    .hero-real .display {
        font-size: 2.75rem;
        line-height: .98;
    }

    .hero-real .lead {
        font-size: .92rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-real .btn {
        width: 100%;
    }

    .hero-stats,
    .grid-3,
    .grid-4,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-img img {
        height: 330px;
    }

    .display {
        font-size: 2.7rem;
    }

    .image-panel img {
        height: 330px;
    }
}
/* =========================================================
   FIX FINAL HERO HOME - ACEITUNO MARTINEZ
   Pegar al final del CSS
========================================================= */

body .hero.hero-real {
    min-height: 560px !important;
    height: 560px !important;
    max-height: 560px !important;
    padding: 120px 0 45px !important;
    display: flex !important;
    align-items: center !important;
    background-size: cover !important;
    background-position: 72% center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
}

body .hero.hero-real .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(280px, 430px) 1fr !important;
    gap: 30px !important;
    align-items: center !important;
}

body .hero.hero-real .hero-content {
    max-width: 430px !important;
    padding: 0 !important;
}

body .hero.hero-real .eyebrow {
    font-size: 0.58rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 8px !important;
}

body .hero.hero-real .display {
    font-size: clamp(2.6rem, 4.1vw, 4.2rem) !important;
    line-height: 0.92 !important;
    margin: 0 0 16px !important;
    max-width: 430px !important;
}

body .hero.hero-real .lead {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    max-width: 400px !important;
    margin: 0 !important;
}

body .hero.hero-real .hero-actions {
    margin-top: 18px !important;
    margin-bottom: 20px !important;
    gap: 8px !important;
}

body .hero.hero-real .btn {
    min-height: 36px !important;
    padding: 0 16px !important;
    font-size: 0.78rem !important;
}

body .hero.hero-real .hero-stats {
    max-width: 400px !important;
    padding: 10px !important;
    gap: 8px !important;
    border-radius: 14px !important;
}

body .hero.hero-real .stat {
    padding-right: 8px !important;
}

body .hero.hero-real .stat strong {
    font-size: 0.88rem !important;
}

body .hero.hero-real .stat span {
    font-size: 0.65rem !important;
}

/* Overlay para que el texto siga legible */
body .hero.hero-real .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.98) 0%,
        rgba(255, 253, 248, 0.94) 24%,
        rgba(255, 253, 248, 0.55) 45%,
        rgba(255, 253, 248, 0.10) 100%
    ) !important;
}

/* Responsive */
@media (max-width: 980px) {
    body .hero.hero-real {
        height: auto !important;
        max-height: none !important;
        min-height: 560px !important;
        padding: 115px 0 45px !important;
        background-position: 68% center !important;
    }

    body .hero.hero-real .hero-grid {
        grid-template-columns: 1fr !important;
    }

    body .hero.hero-real .hero-content {
        max-width: 100% !important;
    }

    body .hero.hero-real .display {
        font-size: clamp(2.7rem, 11vw, 4.2rem) !important;
        max-width: 100% !important;
    }

    body .hero.hero-real .lead {
        max-width: 520px !important;
    }

    body .hero.hero-real .hero-stats {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }
}

@media (max-width: 620px) {
    body .hero.hero-real {
        min-height: auto !important;
        height: auto !important;
        padding: 105px 0 40px !important;
        background-position: 70% center !important;
    }

    body .hero.hero-real .display {
        font-size: 2.6rem !important;
        line-height: 0.98 !important;
    }

    body .hero.hero-real .lead {
        font-size: 0.9rem !important;
    }

    body .hero.hero-real .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body .hero.hero-real .btn {
        width: 100% !important;
    }
}
/* AJUSTE FINAL HERO MÁS CORPORATIVO */

body .hero.hero-real {
    min-height: 520px !important;
    height: 520px !important;
    padding: 115px 0 45px !important;
    background-position: 76% center !important;
}

body .hero.hero-real .hero-grid {
    grid-template-columns: minmax(340px, 520px) 1fr !important;
}

body .hero.hero-real .hero-content {
    max-width: 520px !important;
}

body .hero.hero-real .display {
    font-size: clamp(3.1rem, 4.6vw, 5.1rem) !important;
    line-height: 0.93 !important;
    max-width: 520px !important;
}

body .hero.hero-real .lead {
    max-width: 470px !important;
    font-size: 0.96rem !important;
    line-height: 1.6 !important;
}

body .hero.hero-real .hero-actions {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
}

body .hero.hero-real .hero-stats {
    display: none !important;
}

body .hero.hero-real .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.99) 0%,
        rgba(255, 253, 248, 0.95) 27%,
        rgba(255, 253, 248, 0.58) 48%,
        rgba(255, 253, 248, 0.08) 100%
    ) !important;
}


/* =========================================================
   HERO DEFINITIVO - VERSIÓN PROPORCIONAL CON FOTO REAL
   Este bloque anula el hero de fondo gigante y usa imagen lateral.
========================================================= */

body .hero.hero-real.hero-boxed {
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 130px 0 70px !important;
    display: block !important;
    align-items: initial !important;
    background: linear-gradient(135deg, #fffdf8 0%, #f8f2df 100%) !important;
    background-image: none !important;
    overflow: visible !important;
}

body .hero.hero-real.hero-boxed::before,
body .hero.hero-real.hero-boxed .hero-overlay {
    display: none !important;
}

body .hero.hero-real.hero-boxed .hero-grid {
    width: min(1160px, 92%) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr) !important;
    gap: 48px !important;
    align-items: center !important;
}

body .hero.hero-real.hero-boxed .hero-content {
    max-width: 520px !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

body .hero.hero-real.hero-boxed .eyebrow {
    display: inline-block !important;
    margin-bottom: 12px !important;
    color: var(--gold) !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    line-height: 1.35 !important;
    text-transform: uppercase !important;
}

body .hero.hero-real.hero-boxed .display {
    max-width: 520px !important;
    margin: 0 0 20px !important;
    font-family: var(--serif) !important;
    font-size: clamp(3.2rem, 4.8vw, 5.4rem) !important;
    line-height: 0.94 !important;
    color: var(--ink) !important;
    letter-spacing: -0.045em !important;
}

body .hero.hero-real.hero-boxed .lead {
    max-width: 500px !important;
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

body .hero.hero-real.hero-boxed .hero-actions {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 26px !important;
    margin-bottom: 26px !important;
}

body .hero.hero-real.hero-boxed .btn {
    min-height: 44px !important;
    padding: 0 22px !important;
    font-size: 0.9rem !important;
}

body .hero.hero-real.hero-boxed .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    max-width: 500px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

body .hero.hero-real.hero-boxed .stat {
    min-height: 82px !important;
    padding: 16px 14px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(45, 40, 35, .06) !important;
}

body .hero.hero-real.hero-boxed .stat strong {
    display: block !important;
    font-family: var(--serif) !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
    color: var(--gold) !important;
    margin-bottom: 5px !important;
}

body .hero.hero-real.hero-boxed .stat span {
    display: block !important;
    color: var(--muted) !important;
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
}

body .hero-photo {
    position: relative !important;
    height: 440px !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    box-shadow: 0 28px 70px rgba(31, 28, 24, .16) !important;
    border: 1px solid rgba(179, 154, 34, .20) !important;
    background: #fff !important;
}

body .hero-photo::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,0)) !important;
    pointer-events: none !important;
}

body .hero-photo img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: 62% center !important;
}

@media (max-width: 980px) {
    body .hero.hero-real.hero-boxed {
        padding: 115px 0 60px !important;
    }

    body .hero.hero-real.hero-boxed .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    body .hero.hero-real.hero-boxed .hero-content {
        max-width: 100% !important;
    }

    body .hero.hero-real.hero-boxed .display {
        max-width: 680px !important;
        font-size: clamp(2.9rem, 10vw, 4.7rem) !important;
    }

    body .hero.hero-real.hero-boxed .lead {
        max-width: 680px !important;
    }

    body .hero-photo {
        height: 360px !important;
    }
}

@media (max-width: 620px) {
    body .hero.hero-real.hero-boxed {
        padding: 105px 0 50px !important;
    }

    body .hero.hero-real.hero-boxed .display {
        font-size: 2.7rem !important;
        line-height: .98 !important;
    }

    body .hero.hero-real.hero-boxed .lead {
        font-size: .94rem !important;
    }

    body .hero.hero-real.hero-boxed .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body .hero.hero-real.hero-boxed .btn {
        width: 100% !important;
    }

    body .hero.hero-real.hero-boxed .hero-stats {
        grid-template-columns: 1fr !important;
    }

    body .hero-photo {
        height: 280px !important;
        border-radius: 24px !important;
    }
}
/* =========================================================
   HERO HOME DEFINITIVO - ESTILO MAQUETA
   Pegar al final de main.css
========================================================= */

/* opcional: neutraliza el hero antiguo si aún existe */
.hero.hero-real {
    background: none !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: visible !important;
}

.hero-home {
    position: relative;
    padding: 150px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.75), rgba(255,255,255,0) 45%),
        linear-gradient(180deg, #f7f4ee 0%, #fbfaf7 100%);
}

.hero-home .container {
    width: min(1480px, 95%);
}

.hero-home-grid {
    display: grid;
    grid-template-columns: minmax(420px, 610px) minmax(520px, 1fr);
    gap: 26px;
    align-items: center;
}

.hero-home-copy {
    max-width: 610px;
    padding-left: 10px;
}

.hero-home .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #b79a18;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-home .display {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: clamp(4rem, 5.9vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: #23211f;
    max-width: 610px;
}

.hero-home .lead {
    margin: 0;
    max-width: 560px;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #63605d;
}

.hero-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    margin-bottom: 34px;
}

.hero-home .btn {
    min-height: 64px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 1.02rem;
    font-weight: 800;
    margin: 0;
}

.hero-home .btn-gold {
    background: linear-gradient(135deg, #c8a31a, #b28f12);
    color: #fff;
    box-shadow: 0 16px 32px rgba(179, 154, 34, 0.22);
}

.hero-home .btn-outline {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5dfd2;
    color: #23211f;
    box-shadow: 0 8px 22px rgba(33, 29, 24, 0.06);
}

.hero-home .btn-wa {
    gap: 10px;
}

.hero-home .wa-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.hero-home-media {
    position: relative;
    height: 840px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(35, 31, 27, 0.12);
    background: #efe8da;
}

.hero-home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 860px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #ece4d3;
    border-radius: 30px;
    padding: 26px 28px;
    box-shadow: 0 24px 60px rgba(35, 31, 27, 0.08);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 88px;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fbf7ea;
    color: #c19e15;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-item strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.15;
    color: #23211f;
}

.benefit-item span {
    display: block;
    font-size: 1.02rem;
    line-height: 1.15;
    color: #23211f;
    font-weight: 700;
}

/* NAVBAR más parecida a la referencia */
.topbar {
    top: 18px !important;
    width: min(1480px, 95%) !important;
    padding: 16px 28px !important;
    border-radius: 36px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(217, 207, 187, 0.65) !important;
    box-shadow: 0 18px 45px rgba(35, 31, 27, 0.10) !important;
}

.brand img {
    width: 190px !important;
    height: 84px !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.main-nav {
    gap: 10px !important;
}

.main-nav a {
    padding: 16px 18px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #23211f !important;
}

.nav-cta,
.main-nav a:hover {
    background: #c8a31a !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-home-grid {
        grid-template-columns: minmax(360px, 540px) minmax(420px, 1fr);
    }

    .hero-home-media {
        height: 720px;
    }

    .hero-home .display {
        font-size: clamp(3.5rem, 5.3vw, 5.5rem);
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .hero-home {
        padding: 125px 0 55px;
    }

    .hero-home-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-home-copy {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-home .display {
        max-width: 100%;
        font-size: clamp(3rem, 11vw, 5rem);
    }

    .hero-home .lead {
        max-width: 100%;
    }

    .hero-home-media {
        height: 520px;
        order: 2;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .main-nav {
        gap: 0 !important;
    }
}

@media (max-width: 620px) {
    .hero-home {
        padding: 110px 0 45px;
    }

    .hero-home .display {
        font-size: 2.8rem;
        line-height: 0.98;
    }

    .hero-home .lead {
        font-size: 0.96rem;
    }

    .hero-home .hero-actions {
        flex-direction: column;
    }

    .hero-home .btn {
        width: 100%;
        min-height: 56px;
    }

    .hero-home-media {
        height: 360px;
        border-radius: 24px;
    }

    .benefit-item {
        min-height: auto;
    }
}
/* =========================================================
   HERO PREMIUM DEFINITIVO - ACEITUNO MARTINEZ
========================================================= */

.hero-home,
.hero-real,
.hero.hero-real {
    display: none !important;
}

.am-hero-premium {
    position: relative;
    min-height: 900px;
    padding: 170px 0 80px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.am-hero-premium::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 0;
    width: 430px;
    height: 430px;
    background-image: radial-gradient(rgba(179, 154, 34, 0.45) 1px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.35;
    transform: rotate(18deg);
    z-index: 1;
}

.am-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(251, 250, 247, 1) 0%,
            rgba(251, 250, 247, 0.98) 24%,
            rgba(251, 250, 247, 0.80) 43%,
            rgba(251, 250, 247, 0.25) 65%,
            rgba(251, 250, 247, 0.03) 100%
        );
    z-index: 1;
}

.am-hero-inner {
    position: relative;
    z-index: 2;
}

.am-hero-copy {
    max-width: 650px;
}

.am-hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.am-hero-copy h1 {
    margin: 0 0 30px;
    max-width: 650px;
    font-family: var(--serif);
    font-size: clamp(4.4rem, 6vw, 7.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: #23211f;
}

.am-hero-copy p {
    max-width: 610px;
    margin: 0;
    color: #5f5b57;
    font-size: 1.12rem;
    line-height: 1.75;
}

.am-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    margin-bottom: 52px;
}

.am-hero-actions .btn {
    min-height: 64px;
    padding: 0 32px;
    margin: 0;
    font-size: 1.02rem;
    border-radius: 999px;
}

.am-hero-benefits {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(232, 223, 202, 0.95);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(31, 28, 24, 0.12);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.am-hero-benefits div {
    padding: 30px 28px;
    border-right: 1px solid rgba(232, 223, 202, 0.95);
}

.am-hero-benefits div:last-child {
    border-right: none;
}

.am-hero-benefits strong {
    display: block;
    color: #23211f;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.2;
}

.am-hero-benefits span {
    display: block;
    color: #5f5b57;
    font-size: 0.98rem;
    line-height: 1.25;
    margin-top: 4px;
}

/* Navbar más elegante, parecido a la referencia */
.topbar {
    top: 22px !important;
    width: min(1480px, 94%) !important;
    min-height: 104px !important;
    padding: 12px 30px !important;
    border-radius: 36px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(232, 223, 202, 0.9) !important;
    box-shadow: 0 18px 48px rgba(31, 28, 24, 0.11) !important;
}

.brand img {
    width: 190px !important;
    height: 78px !important;
    object-fit: contain !important;
}

.main-nav {
    gap: 10px !important;
}

.main-nav a {
    padding: 15px 18px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
    color: #fff !important;
}

/* Ajuste de la siguiente sección para que no quede tan pegada */
.am-hero-premium + .section {
    padding-top: 110px;
}

/* Responsive */
@media (max-width: 1100px) {
    .am-hero-premium {
        min-height: 760px;
        padding: 150px 0 70px;
        background-position: 68% center;
    }

    .am-hero-copy h1 {
        font-size: clamp(3.6rem, 8vw, 5.8rem);
    }

    .am-hero-benefits {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .am-hero-benefits div {
        border-right: none;
        border-bottom: 1px solid rgba(232, 223, 202, 0.95);
    }

    .am-hero-benefits div:last-child {
        border-bottom: none;
    }
}

@media (max-width: 720px) {
    .am-hero-premium {
        min-height: auto;
        padding: 130px 0 60px;
        background-position: 72% center;
    }

    .am-hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(251, 250, 247, 1) 0%,
                rgba(251, 250, 247, 0.96) 48%,
                rgba(251, 250, 247, 0.82) 100%
            );
    }

    .am-hero-copy h1 {
        font-size: 3.3rem;
        line-height: 0.96;
    }

    .am-hero-copy p {
        font-size: 0.98rem;
    }

    .am-hero-actions {
        flex-direction: column;
    }

    .am-hero-actions .btn {
        width: 100%;
        min-height: 56px;
    }

    .topbar {
        min-height: 76px !important;
        padding: 10px 18px !important;
    }

    .brand img {
        width: 145px !important;
        height: 54px !important;
    }
}
/* =========================================================
   FOOTER PREMIUM - ACEITUNO MARTINEZ
========================================================= */

.footer.footer-premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 0%, rgba(179, 154, 34, 0.22), transparent 32%),
        linear-gradient(135deg, #161412 0%, #25221d 48%, #12100f 100%);
    color: #fff;
    padding: 0;
}

.footer-pattern {
    position: absolute;
    right: -130px;
    top: -120px;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(rgba(211, 189, 74, 0.5) 1px, transparent 1.4px);
    background-size: 12px 12px;
    opacity: 0.22;
    transform: rotate(18deg);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.05fr;
    gap: 36px;
    padding: 76px 0 54px;
}

.footer-logo-box {
    width: 230px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(211, 189, 74, 0.28);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    margin-bottom: 24px;
}

.footer-logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand p,
.footer-col li,
.footer-cta p,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.74);
}

.footer-brand p {
    max-width: 360px;
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(211, 189, 74, 0.24);
    color: #fff;
    font-weight: 800;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h3,
.footer-cta h3 {
    margin: 0 0 22px;
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
    color: #fff;
}

.footer-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 22px;
    line-height: 1.65;
}

.footer-list span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold2);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-list a {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.25s ease;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.74);
    transition: all 0.25s ease;
}

.footer-links a:hover,
.footer-list a:hover {
    color: var(--gold2);
    transform: translateX(3px);
}

.footer-cta {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(179, 154, 34, 0.2), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(211, 189, 74, 0.24);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.footer-cta p {
    margin: 0 0 24px;
    line-height: 1.7;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(179, 154, 34, 0.22);
    transition: all 0.25s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(179, 154, 34, 0.32);
}

.footer-link-small {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.footer-link-small:hover {
    color: var(--gold2);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: auto;
    padding: 24px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #fff;
    font-weight: 800;
}

.footer-bottom a:hover {
    color: var(--gold2);
}

@media (max-width: 1050px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 58px 0 42px;
    }

    .footer-logo-box {
        width: 210px;
    }

    .footer-cta {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
/* =========================================================
   SECCIÓN QUIÉNES SOMOS PREMIUM
========================================================= */

.about-premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(179, 154, 34, 0.09), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #ffffff 50%, #f8f2df 100%);
    padding: 110px 0;
}

.about-premium::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 40px;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(rgba(179, 154, 34, 0.35) 1px, transparent 1.4px);
    background-size: 12px 12px;
    opacity: 0.18;
    transform: rotate(18deg);
    pointer-events: none;
}

.about-premium-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-copy {
    max-width: 610px;
}

.about-copy .h2 {
    max-width: 620px;
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 4.2vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.about-copy .lead {
    max-width: 580px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.75;
}

.about-copy p:not(.lead) {
    max-width: 570px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-panel {
    display: grid;
    gap: 22px;
}

.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 28px 70px rgba(31, 28, 24, 0.14);
}

.about-card-main {
    background:
        linear-gradient(135deg, rgba(36, 34, 34, 0.97), rgba(92, 80, 24, 0.97)),
        radial-gradient(circle at top right, rgba(211, 189, 74, 0.35), transparent 35%);
    color: #fff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-main::after {
    content: "AM";
    position: absolute;
    right: -12px;
    bottom: -42px;
    font-family: var(--serif);
    font-size: 9rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
}

.about-card-main span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gold2);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-card-main h3 {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
}

.about-card-main p {
    position: relative;
    z-index: 2;
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.about-mini {
    min-height: 122px;
    padding: 22px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(232, 223, 202, 0.95);
    box-shadow: 0 16px 42px rgba(31, 28, 24, 0.06);
}

.about-mini strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1;
    color: var(--gold);
}

.about-mini span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

@media (max-width: 1050px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-copy {
        max-width: 100%;
    }

    .about-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .about-premium {
        padding: 80px 0;
    }

    .about-copy .h2 {
        font-size: 2.65rem;
    }

    .about-card {
        padding: 30px;
        border-radius: 28px;
    }

    .about-mini-grid {
        grid-template-columns: 1fr;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-actions .btn {
        width: 100%;
    }
}
/* =========================================================
   POPUP ÁREAS DE PRÁCTICA
========================================================= */

.areas-home-section {
    position: relative;
    overflow: hidden;
}

.areas-grid .area-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.areas-grid .area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(31, 28, 24, 0.12);
}

.area-card .area-open {
    cursor: pointer;
}

.area-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.area-modal.is-open {
    display: flex;
}

.area-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, 0.72);
    backdrop-filter: blur(8px);
}

.area-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(860px, 96vw);
    max-height: 88vh;
    overflow: auto;
    background:
        radial-gradient(circle at top right, rgba(179, 154, 34, 0.12), transparent 34%),
        #fff;
    border: 1px solid rgba(232, 223, 202, 0.95);
    border-radius: 34px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    padding: 42px;
    animation: areaModalIn 0.25s ease;
}

@keyframes areaModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

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

.area-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #f6f1df;
    color: #242222;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.area-modal-close:hover {
    background: var(--gold);
    color: #fff;
    transform: rotate(90deg);
}

.area-modal-header {
    padding-right: 48px;
    margin-bottom: 28px;
}

.area-modal-header h3 {
    margin: 12px 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.95;
    color: var(--ink);
}

.area-modal-header p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.area-modal-body {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, #fbfaf7, #f8f2df);
    border: 1px solid var(--line);
}

.area-modal-body h4 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
}

.area-modal-body ul {
    columns: 2;
    column-gap: 34px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-modal-body li {
    position: relative;
    break-inside: avoid;
    padding: 8px 0 8px 24px;
    color: #56524e;
    line-height: 1.55;
}

.area-modal-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
}

.area-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .area-modal {
        padding: 14px;
    }

    .area-modal-dialog {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .area-modal-header {
        padding-right: 38px;
    }

    .area-modal-body {
        padding: 22px;
    }

    .area-modal-body ul {
        columns: 1;
    }

    .area-modal-actions {
        flex-direction: column;
    }

    .area-modal-actions .btn {
        width: 100%;
    }
}
/* =========================================================
   QUIÉNES SOMOS PREMIUM
========================================================= */

.about-page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(179, 154, 34, 0.08), transparent 30%),
        linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
    padding: 150px 0 90px;
}

.about-page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 40px;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(rgba(179, 154, 34, 0.35) 1px, transparent 1.4px);
    background-size: 12px 12px;
    opacity: 0.18;
    transform: rotate(18deg);
    pointer-events: none;
}

.about-page-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.about-page-copy {
    max-width: 650px;
}

.about-page-copy h1 {
    margin: 12px 0 24px;
    font-family: var(--serif);
    font-size: clamp(3.4rem, 5.6vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.about-page-copy .lead {
    max-width: 620px;
    margin-bottom: 20px;
    color: #4f4b47;
    font-size: 1.13rem;
    line-height: 1.75;
}

.about-page-copy p:not(.lead) {
    max-width: 610px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.about-page-media {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(232, 223, 202, 0.95);
    box-shadow: 0 30px 80px rgba(31, 28, 24, 0.14);
    background: #fff;
}

.about-page-media::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(211, 189, 74, 0.35);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.about-page-media img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.about-page-media:hover img {
    transform: scale(1.035);
}

/* Valores */

.about-values-section {
    position: relative;
    background: #fff;
    padding: 0 0 90px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value {
    position: relative;
    min-height: 210px;
    padding: 30px 26px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
    border: 1px solid rgba(232, 223, 202, 0.95);
    box-shadow: 0 18px 45px rgba(31, 28, 24, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
}

.about-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 65px rgba(31, 28, 24, 0.11);
}

.about-value::after {
    content: "AM";
    position: absolute;
    right: 18px;
    bottom: -20px;
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
    color: rgba(179, 154, 34, 0.08);
}

.about-value span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--gold);
    font-weight: 900;
}

.about-value h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--ink);
}

.about-value p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

/* Misión y visión */

.about-mission-vision {
    background:
        linear-gradient(180deg, #f8f2df 0%, #fbfaf7 100%);
    padding-top: 95px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 44px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(232, 223, 202, 0.95);
    box-shadow: 0 24px 60px rgba(31, 28, 24, 0.08);
}

.mission-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(179, 154, 34, 0.12);
}

.mission-card h2 {
    position: relative;
    z-index: 2;
    margin: 16px 0 20px;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 3.5vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--ink);
}

.mission-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

.mission-card-dark {
    background:
        radial-gradient(circle at top right, rgba(211, 189, 74, 0.18), transparent 35%),
        linear-gradient(135deg, #242222, #5c5018);
    color: #fff;
}

.mission-card-dark h2 {
    color: #fff;
}

.mission-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.mission-card-dark .eyebrow {
    color: var(--gold2);
}

@media (max-width: 1050px) {
    .about-page-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page-media img {
        height: 420px;
    }
}

@media (max-width: 620px) {
    .about-page-hero {
        padding: 120px 0 70px;
    }

    .about-page-copy h1 {
        font-size: 3.2rem;
    }

    .about-page-media img {
        height: 330px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px;
        min-height: auto;
    }

    .about-page-actions {
        flex-direction: column;
    }

    .about-page-actions .btn {
        width: 100%;
    }
}
/* =========================================================
   PÁGINA ÁREAS PREMIUM
========================================================= */

.areas-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 90px;
    background:
        radial-gradient(circle at 15% 12%, rgba(179, 154, 34, 0.10), transparent 30%),
        linear-gradient(180deg, #fbfaf7 0%, #f8f2df 100%);
}

.areas-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 40px;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(rgba(179, 154, 34, 0.35) 1px, transparent 1.4px);
    background-size: 12px 12px;
    opacity: 0.18;
    transform: rotate(18deg);
    pointer-events: none;
}

.areas-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.areas-hero h1 {
    max-width: 760px;
    margin: 12px 0 24px;
    font-family: var(--serif);
    font-size: clamp(3.8rem, 6vw, 6.6rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
    color: var(--ink);
}

.areas-hero p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.areas-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.areas-hero-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(211, 189, 74, 0.22), transparent 38%),
        linear-gradient(135deg, #242222, #5c5018);
    color: #fff;
    box-shadow: 0 30px 80px rgba(31, 28, 24, 0.16);
}

.areas-hero-card::after {
    content: "AM";
    position: absolute;
    right: -16px;
    bottom: -42px;
    font-family: var(--serif);
    font-size: 10rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
}

.areas-hero-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(211, 189, 74, 0.28);
    color: var(--gold2);
    font-weight: 900;
}

.areas-hero-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 2.5rem;
    line-height: 1;
}

.areas-hero-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.areas-premium-section {
    background: #fff;
    padding: 105px 0;
}

.areas-section-head {
    max-width: 820px;
    margin-bottom: 50px;
}

.areas-section-head h2 {
    margin: 12px 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.areas-section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.areas-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-premium-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 34px 30px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
    border: 1px solid rgba(232, 223, 202, 0.98);
    box-shadow: 0 18px 50px rgba(31, 28, 24, 0.07);
    transition: all 0.28s ease;
}

.area-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 75px rgba(31, 28, 24, 0.13);
}

.area-premium-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(179, 154, 34, 0.10);
}

.area-premium-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: var(--soft);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.area-premium-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    font-family: var(--serif);
    font-size: 2.15rem;
    line-height: 1;
    color: var(--ink);
}

.area-premium-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.65;
}

.area-premium-card ul {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-premium-card li {
    position: relative;
    padding: 7px 0 7px 22px;
    color: #55514d;
    line-height: 1.45;
    font-size: 0.95rem;
}

.area-premium-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gold);
}

.areas-final-cta {
    padding: 95px 0;
    background:
        radial-gradient(circle at 90% 0%, rgba(179, 154, 34, 0.12), transparent 30%),
        linear-gradient(135deg, #f8f2df 0%, #fbfaf7 100%);
}

.areas-final-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
    padding: 44px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(36, 34, 34, 0.98), rgba(92, 80, 24, 0.96));
    color: #fff;
    box-shadow: 0 30px 80px rgba(31, 28, 24, 0.18);
}

.areas-final-box h2 {
    margin: 12px 0 18px;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.95;
    color: #fff;
}

.areas-final-box p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.areas-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.areas-final-actions .btn {
    width: 100%;
    margin: 0;
}

.areas-final-actions .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.areas-final-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1050px) {
    .areas-hero-grid,
    .areas-final-box {
        grid-template-columns: 1fr;
    }

    .areas-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .areas-hero {
        padding: 125px 0 70px;
    }

    .areas-hero h1 {
        font-size: 3.3rem;
    }

    .areas-hero-actions,
    .areas-final-actions {
        flex-direction: column;
    }

    .areas-hero-actions .btn,
    .areas-final-actions .btn {
        width: 100%;
    }

    .areas-premium-grid {
        grid-template-columns: 1fr;
    }

    .area-premium-card {
        min-height: auto;
    }

    .areas-final-box {
        padding: 30px;
    }
}