:root {
    --bg: #faf7ff;
    --surface: #ffffff;
    --surface-soft: #f4ecff;
    --ink: #171126;
    --muted: #665d78;
    --line: rgba(42, 28, 70, .12);
    --brand: #7c3aed;
    --brand-2: #c084fc;
    --brand-dark: #2e1065;
    --cream: #f1e7ff;
    --success: #2f6f56;
    --shadow: 0 24px 80px rgba(46, 16, 101, .16);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 0 0, rgba(192, 132, 252, .26), transparent 34rem),
        radial-gradient(circle at 100% 8%, rgba(124, 58, 237, .16), transparent 36rem),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 248, 243, .78);
    border-bottom: 1px solid rgba(42, 28, 70, .08);
    backdrop-filter: blur(18px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 14px; }
.brand-mark {
    width: 48px; height: 48px; border-radius: 16px;
    display: grid; place-items: center;
    color: #fff; font-weight: 900; letter-spacing: -.06em;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 14px 28px rgba(124, 58, 237, .28);
}
.brand strong { display: block; font-size: 17px; letter-spacing: -.03em; }
.brand small { display: block; color: var(--muted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 250px; }
.main-nav { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); }
.main-nav a { padding: 11px 13px; border-radius: 999px; transition: .22s ease; }
.main-nav a:hover { color: var(--ink); background: rgba(124, 58, 237, .10); }
.nav-cta { background: var(--ink) !important; color: white !important; padding-inline: 18px !important; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 14px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }
.hero { position: relative; overflow: hidden; padding-top: 86px; }
.hero::before {
    content: ""; position: absolute; inset: 70px 4% auto auto;
    width: 440px; height: 440px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(192, 132, 252, .28), rgba(124, 58, 237, .08));
    filter: blur(10px); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; margin-bottom: 12px; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.055em; }
h1 { font-size: clamp(44px, 7vw, 88px); max-width: 850px; }
h2 { font-size: clamp(32px, 4.2vw, 56px); }
h3 { font-size: 22px; }
p { color: var(--muted); margin: 0; }
.lead { font-size: clamp(18px, 2vw, 23px); color: #3f315d; margin: 24px 0 18px; }
.hero-copy > p:not(.lead) { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 26px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 52px; padding: 14px 22px; border-radius: 999px;
    border: 1px solid rgba(42, 28, 70, .14);
    font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: white; background: linear-gradient(135deg, var(--brand-dark), var(--brand) 56%, #a855f7); box-shadow: 0 16px 34px rgba(46, 16, 101, .26); }
.btn.ghost { background: rgba(255,255,255,.62); }
.btn.light { background: #fff; color: var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.58); color: #5f5175; font-size: 13px; font-weight: 700; }
.hero-card { min-height: 540px; display: grid; place-items: center; position: relative; }
.hero-card::before {
    content: ""; position: absolute; inset: 20px;
    background: linear-gradient(135deg, #2e1065, #7c3aed 58%, #c084fc);
    border-radius: 44px; transform: rotate(-4deg); box-shadow: var(--shadow);
}
.glass-card {
    position: relative; z-index: 1; width: min(440px, 100%);
    padding: 34px; color: white;
    border-radius: 36px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .27);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 80px rgba(0,0,0,.16);
}
.glass-card p, .glass-card li, .glass-card small { color: rgba(255,255,255,.78); }
.glass-card h2 { font-size: 38px; margin: 20px 0 14px; }
.glass-card ul { margin: 24px 0 0; padding-left: 20px; }
.score-ring { width: 148px; height: 148px; border: 16px solid rgba(255,255,255,.22); border-top-color: #fff; border-radius: 50%; display: grid; place-items: center; text-align: center; }
.score-ring span { display: block; font-size: 30px; font-weight: 900; }
.score-ring small { display: block; margin-top: -28px; font-size: 12px; font-weight: 700; }
.section-head { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { margin-top: 18px; font-size: 18px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card {
    padding: 28px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,.74); border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(46, 16, 101, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: var(--surface-soft); margin-bottom: 24px; }
.icon svg { width: 28px; height: 28px; fill: var(--brand); }
.program-card p { margin-top: 14px; }
.split-section { background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(241,231,255,.58)); }
.split-grid, .meb-grid, .faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.split-copy { position: sticky; top: 110px; }
.split-copy p:not(.lead) { margin-top: 18px; }
.process { display: grid; gap: 14px; }
.process div {
    padding: 24px; border-radius: 24px; background: #fff; border: 1px solid var(--line);
    display: grid; grid-template-columns: 74px 1fr; column-gap: 20px;
}
.process span { grid-row: span 2; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--ink); font-weight: 900; }
.process strong { font-size: 20px; }
.process p { margin-top: 6px; }
.meb-section { background: var(--brand-dark); color: white; }
.meb-section p { color: rgba(255,255,255,.76); }
.meb-section .eyebrow { color: #ddd6fe; }
.compliance-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.compliance-list span { padding: 13px 14px; border-radius: 15px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); font-weight: 700; }
.qr-card { padding: 28px; border-radius: 30px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.qr-box { padding: 18px; background: white; border-radius: 24px; width: 220px; max-width: 100%; margin-bottom: 22px; }
.qr-box img { border-radius: 12px; }
.qr-placeholder { height: 184px; display: grid; place-items: center; text-align: center; color: var(--brand-dark); border: 2px dashed #b99cff; border-radius: 16px; font-size: 28px; font-weight: 900; line-height: 1.1; }
.qr-card p { margin-top: 12px; }
.fee-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fee-card { padding: 28px; border-radius: 26px; background: white; border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(59,33,24,.06); }
.fee-card span { color: var(--brand); font-weight: 800; }
.fee-card h3 { margin: 10px 0 16px; }
.fee-card strong { display: block; font-size: 28px; letter-spacing: -.04em; margin-bottom: 12px; }
.announcement-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.announcement { padding: 24px; border-radius: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.8); }
.announcement time { color: var(--brand); font-weight: 800; font-size: 13px; }
.announcement h3 { margin: 10px 0 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; border-radius: 24px; overflow: hidden; background: white; border: 1px solid var(--line); }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; }
.gallery-grid figcaption { padding: 14px 16px; color: var(--muted); font-weight: 700; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 20px; background: white; padding: 0 20px; }
summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 850; font-size: 18px; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--brand); font-size: 26px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding-bottom: 20px; }
.cta-section { padding-top: 50px; }
.cta-card { background: linear-gradient(135deg, var(--brand-dark), var(--brand) 56%, #a855f7); color: white; border-radius: var(--radius-xl); padding: clamp(30px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow); }
.cta-card p { color: rgba(255,255,255,.75); margin-top: 12px; }
.cta-card .eyebrow { color: #ddd6fe; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 58px 0; background: #171126; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 36px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.7); }
.site-footer a { display: block; margin: 9px 0; }
.site-footer h2, .site-footer h3 { margin-bottom: 14px; }
.small { font-size: 13px; }
.float-whatsapp { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: white; display: grid; place-items: center; font-weight: 900; box-shadow: 0 18px 42px rgba(0,0,0,.2); z-index: 55; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
@media (max-width: 960px) {
    .section-pad { padding: 78px 0; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; top: 82px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 16px; }
    .hero-grid, .split-grid, .meb-grid, .faq-grid { grid-template-columns: 1fr; }
    .split-copy { position: static; }
    .program-grid, .announcement-list, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1180px); }
    .nav-wrap { height: 74px; }
    .brand small { max-width: 190px; }
    .main-nav { top: 74px; }
    .hero { padding-top: 58px; }
    .hero-card { min-height: 430px; }
    .glass-card { padding: 24px; border-radius: 28px; }
    .glass-card h2 { font-size: 30px; }
    .score-ring { width: 120px; height: 120px; }
    .program-grid, .announcement-list, .fee-grid, .gallery-grid, .compliance-list { grid-template-columns: 1fr; }
    .process div { grid-template-columns: 1fr; gap: 14px; }
    .cta-card { display: block; }
    .cta-actions { margin-top: 24px; }
}
