/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #111111;
  --g900:     #1e1e1e;
  --g700:     #3d3d3d;
  --g500:     #6b6b6b;
  --g400:     #909090;
  --g200:     #d8d8d4;
  --g100:     #f0f0ec;
  --g50:      #f8f8f5;
  --white:    #ffffff;
  --gold:     #ccc181;
  --gold-d:   #a09e58;
  --gold-dd:  #7a7840;
  --gold-l:   #f7f6e8;
  --gold-m:   #e4e2b4;
  --border:   rgba(0,0,0,0.08);
  --r:        8px;
  --rl:       14px;
  --rxl:      20px;
  --shadow:   0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--white); color: var(--g900); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--g900); }
h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 600; color: var(--g900); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.sec  { padding: 5rem 0; }
.sec-sm { padding: 3.5rem 0; }
.center { text-align: center; }

.g2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.g3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.g4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.g2r { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }

.lbl { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dd); margin-bottom: .75rem; }
.sec-title { font-size: clamp(1.75rem, 2.8vw, 2.5rem); margin-bottom: 1rem; }
.sec-sub   { font-size: 1rem; color: var(--g500); line-height: 1.75; max-width: 540px; }
.hero-title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.1; margin-bottom: 1.25rem; color: #fff; }
.gold-bar  { width: 40px; height: 2px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }
.gold-bar.mx { margin-left: auto; margin-right: auto; }
.sec-sub.mx  { margin-left: auto; margin-right: auto; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; gap: 1.5rem; }
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: .1rem; list-style: none; }
.nav-links a { font-size: .84rem; font-weight: 500; color: var(--g500); padding: .4rem .8rem; border-radius: 6px; transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { background: var(--g100); color: var(--g900); }
.nav-cta { background: var(--gold); color: var(--g900); border-radius: 6px; padding: .5rem 1.1rem; font-size: .84rem; font-weight: 600; white-space: nowrap; transition: background .2s; }
.nav-cta:hover { background: var(--gold-m); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--g900); border-radius: 2px; }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 499; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.25rem 2rem 1.75rem; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: .15rem; margin-bottom: .85rem; }
.mobile-nav a { display: block; font-size: .93rem; font-weight: 500; color: var(--g700); padding: .55rem .5rem; border-radius: 6px; }
.mobile-nav a:hover { background: var(--g100); }
.mobile-nav .mn-cta { display: block; text-align: center; padding: .75rem; background: var(--gold); color: var(--g900); border-radius: 6px; font-weight: 600; font-size: .9rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-size: .93rem; font-weight: 600; border-radius: var(--r); padding: .8rem 1.6rem; cursor: pointer; border: 2px solid transparent; text-decoration: none; line-height: 1; font-family: 'Inter', sans-serif; transition: all .18s ease; }
.btn-gold   { background: var(--gold); color: var(--g900); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-m); border-color: var(--gold-m); }
.btn-dark   { background: var(--g900); color: #fff; border-color: var(--g900); }
.btn-dark:hover { background: var(--black); border-color: var(--black); }
.btn-outline { background: transparent; color: var(--g700); border-color: var(--g200); }
.btn-outline:hover { background: var(--g100); border-color: var(--g200); color: var(--g900); }
.btn-outline-dark { background: transparent; color: var(--g900); border-color: var(--g900); }
.btn-outline-dark:hover { background: var(--g900); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold-dd); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold-l); }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1da851; border-color: #1da851; }
.btn-lg { padding: .95rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn svg { flex-shrink: 0; }

/* CARDS */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.75rem; transition: box-shadow .2s, transform .2s, border-color .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--g200); }
.card-gold  { background: var(--gold-l); border-color: var(--gold-m); }
.card-lined { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--r); padding: 1.5rem; }

.badge { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 100px; }
.bdg-gold { background: var(--gold-l); color: var(--gold-dd); border: 1px solid var(--gold-m); }
.bdg-dark { background: var(--g900); color: #fff; }
.bdg-gray { background: var(--g100); color: var(--g700); border: 1px solid var(--g200); }
.tag { font-size: .79rem; font-weight: 500; padding: .28rem .8rem; border-radius: 100px; background: var(--g100); color: var(--g700); border: 1px solid var(--g200); display: inline-block; }
.tag-gold { background: var(--gold-l); color: var(--gold-dd); border-color: var(--gold-m); }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; }

.icon-box { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-l); border: 1px solid var(--gold-m); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; flex-shrink: 0; }

.f-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.f-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .92rem; color: var(--g700); line-height: 1.6; }
.f-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }

.proc-list { display: flex; flex-direction: column; }
.proc-item { display: flex; gap: 1.1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.proc-item:last-child { border-bottom: none; }
.proc-item h4 { font-size: .95rem; margin-bottom: .2rem; }
.proc-item p  { font-size: .84rem; color: var(--g500); line-height: 1.6; }
.p-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--g900); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.bg-white { background: var(--white); }
.bg-light { background: var(--g50); }
.sec-border { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* SUB-HERO */
.sub-hero { padding: 6rem 0 3.5rem; border-bottom: 1px solid var(--border); background: var(--g50); }
.sub-hero .lbl { color: var(--gold-dd); }
.sub-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); max-width: 680px; margin-bottom: 1rem; color: var(--g900); }
.sub-hero p { font-size: 1rem; color: var(--g500); max-width: 580px; line-height: 1.75; margin-bottom: 2rem; }
.sub-hero-img { background-size: cover; background-position: center; }
.sub-hero-img .lbl { color: var(--gold); }
.sub-hero-img h1 { color: #fff; }
.sub-hero-img p  { color: rgba(255,255,255,0.85); }
.sub-hero-img .breadcrumb, .sub-hero-img .breadcrumb a { color: rgba(255,255,255,0.6); }
.sub-hero-img .btn-outline { color: #fff; border-color: rgba(255,255,255,0.7); }
.sub-hero-img .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.sub-hero-img.clases      { background-image: url('../hero-clases.jpg'); }
.sub-hero-img.oposiciones { background-image: url('../hero-oposiciones.jpg'); }
.sub-hero-img.cursos      { background-image: url('../hero-cursos.jpg'); }
.sub-hero-img.contacto    { background-image: url('../hero-contacto.jpg'); }
.sub-hero-img.justicia    { background-image: url('../hero-justicia.png'); }
.sub-hero-img.fcse        { background-image: url('../hero-fcse.png'); }
.sub-hero-img.hacienda    { background-image: url('../hero-hacienda.png'); }

.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--g400); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--g400); }
.breadcrumb a:hover { color: var(--g700); }

/* CTA BANNER */
.cta-banner { background: var(--g50); border: 1px solid var(--g200); border-radius: var(--rxl); padding: 3.5rem; text-align: center; }
.cta-banner h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: .75rem; color: var(--g900); }
.cta-banner p  { color: var(--g500); font-size: .97rem; margin-bottom: 1.75rem; }
.cta-banner .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* HERO */
.hero-section { min-height: 100vh; display: flex; align-items: center; padding: 7.5rem 0 4.5rem; background: url('../hero-bg.jpg') center/cover no-repeat; border-bottom: 1px solid var(--border); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 2rem; max-width: 460px; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.25); }
.stat-n { font-size: 1.75rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -.02em; font-family: 'Lora', serif; }
.stat-n span { color: var(--gold); }
.stat-l { font-size: .77rem; color: rgba(255,255,255,0.65); margin-top: .2rem; }
.hero-panel { background: var(--g50); border: 1px solid var(--g200); border-radius: var(--rxl); padding: 2.25rem; }
.hp-sub   { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--g400); margin-bottom: .35rem; }
.hp-title { font-size: 1.2rem; font-family: 'Lora', serif; font-weight: 600; color: var(--g900); margin-bottom: .4rem; }
.hp-desc  { font-size: .84rem; color: var(--g500); line-height: 1.6; margin-bottom: 1.5rem; }
.hp-div   { border: none; border-top: 1px solid var(--g200); margin-bottom: 1.4rem; }
.hp-list  { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.hp-list li { display: flex; align-items: center; gap: .7rem; font-size: .87rem; color: var(--g700); }
.hp-check { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.why-card { padding: 1.6rem; border-radius: var(--rl); border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--g200); }
.why-card.feat { background: var(--gold-l); border-color: var(--gold-m); }
.why-card h4 { font-size: .96rem; font-weight: 600; margin-bottom: .4rem; }
.why-card p  { font-size: .85rem; color: var(--g500); line-height: 1.65; }

.ops-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.6rem; transition: box-shadow .2s, border-color .2s; }
.ops-card:hover { box-shadow: var(--shadow); border-color: var(--gold-m); }
.ops-cat-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dd); margin-bottom: .9rem; }
.ops-list { list-style: none; }
.ops-list li { font-size: .87rem; color: var(--g700); padding: .35rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .45rem; }
.ops-list li:last-child { border-bottom: none; }
.ops-list li::before { content: '→'; color: var(--gold-dd); font-size: .76rem; }

.course-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.6rem; transition: box-shadow .2s, transform .2s, border-color .2s; }
.course-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gold-m); }
.course-card h4 { font-size: .97rem; font-weight: 600; margin-bottom: .35rem; }
.course-card p  { font-size: .82rem; color: var(--g500); line-height: 1.6; margin-bottom: 1rem; }
.cert-row { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--g400); padding-top: .9rem; border-top: 1px solid var(--border); }
.cert-row svg { color: var(--gold-dd); flex-shrink: 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: .97rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; user-select: none; }
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: var(--gold-dd); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { font-size: .9rem; color: var(--g500); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

.grupos-banner { background: var(--gold-l); border: 1px solid var(--gold-m); border-radius: var(--rxl); padding: 2.25rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.grupos-banner h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.grupos-banner p  { font-size: .88rem; color: var(--g700); line-height: 1.7; max-width: 500px; }

.contact-big-btn { display: flex; align-items: center; gap: 1rem; padding: 1.35rem 1.75rem; border-radius: var(--rl); border: 1px solid var(--border); background: var(--white); text-decoration: none; color: inherit; width: 100%; transition: box-shadow .2s, transform .18s, border-color .18s; }
.contact-big-btn:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--g200); }
.contact-big-btn.wa { background: #25D366; border-color: #25D366; color: #fff; }
.contact-big-btn.wa:hover { background: #1da851; border-color: #1da851; box-shadow: 0 6px 24px rgba(37,211,102,.3); }
.cb-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; background: var(--gold-l); }
.contact-big-btn.wa .cb-icon { background: rgba(255,255,255,.2); }
.cb-label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .6; margin-bottom: .1rem; }
.cb-val   { font-size: 1.1rem; font-weight: 700; }
.cb-sub   { font-size: .78rem; opacity: .6; margin-top: .1rem; }
.or-divider { display: flex; align-items: center; gap: 1.25rem; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.or-divider span { font-size: .75rem; color: var(--g400); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }

/* FOOTER */
footer { background: #111; border-top: 1px solid rgba(255,255,255,.05); padding: 3.5rem 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.footer-logo { font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: .6rem; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: .82rem; color: rgba(255,255,255,.28); line-height: 1.7; max-width: 270px; }
.footer-col-t { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .74rem; color: rgba(255,255,255,.18); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .74rem; color: rgba(255,255,255,.22); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 400; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,.4); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* LEGAL PAGES */
.legal-page { padding: 8rem 0 5rem; }
.legal-page h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: .5rem; }
.legal-page .legal-date { font-size: .82rem; color: var(--g400); margin-bottom: 2.5rem; display: block; }
.legal-page h2 { font-size: 1.15rem; margin: 2.5rem 0 .75rem; color: var(--g900); }
.legal-page p { font-size: .93rem; color: var(--g700); line-height: 1.85; margin-bottom: 1rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { font-size: .93rem; color: var(--g700); line-height: 1.8; margin-bottom: .4rem; }
.legal-page a { color: var(--gold-dd); text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* SUB-HERO content wrapper */
.sub-hero-content { max-width: 680px; }
.sub-hero-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.sub-hero-sub { font-size: 1rem; line-height: 1.75; margin-bottom: 0; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* FEAT BOX */
.feat-box { padding: 1.6rem; border-radius: var(--rl); border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; }
.feat-box:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon { font-size: 1.75rem; margin-bottom: .85rem; }
.feat-box h3 { font-size: .97rem; font-weight: 600; margin-bottom: .4rem; }
.feat-box p  { font-size: .85rem; color: var(--g500); line-height: 1.65; }

/* MATERIAS GRID */
.materias-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.materia-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.25rem; transition: border-color .18s, box-shadow .18s; }
.materia-card:hover { border-color: var(--gold-m); box-shadow: var(--shadow); }
.materia-card h4 { font-size: .9rem; font-weight: 600; margin-bottom: .3rem; }
.materia-card p  { font-size: .8rem; color: var(--g500); line-height: 1.55; }

/* CHECK LIST */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.check-list li { font-size: .9rem; color: var(--g700); padding-left: 1.4rem; position: relative; line-height: 1.6; }
.check-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-dd); font-weight: 700; }

/* CONTACT CARDS */
.contact-card { display: flex; align-items: center; gap: 1.25rem; padding: 1.75rem 2rem; border-radius: var(--rl); border: 1px solid var(--border); background: var(--white); text-decoration: none; color: inherit; transition: box-shadow .2s, transform .18s; }
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.contact-card-wa { background: #25D366; border-color: #25D366; color: #fff; }
.contact-card-wa:hover { background: #1da851; border-color: #1da851; }
.contact-card-phone { border-color: var(--g200); }
.cc-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon-phone { background: var(--gold-l); font-size: 1.5rem; }
.cc-label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; opacity: .7; margin-bottom: .15rem; }
.cc-value { font-size: 1.25rem; font-weight: 700; line-height: 1.1; }
.cc-hint  { font-size: .78rem; opacity: .65; margin-top: .2rem; }

/* LEGAL updated date */
.legal-updated { font-size: .82rem; color: var(--g400); margin-bottom: 2.5rem; display: block; }
.legal-page h3 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 .5rem; color: var(--g900); font-family: 'Inter', sans-serif; }

/* NAV DROPDOWN */
.nav-links li { position: relative; }
.nav-links li:hover .nav-dropdown { display: block; }
.nav-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); box-shadow: var(--shadow-lg); min-width: 230px; padding: .5rem; z-index: 600; }
.nav-dropdown a { display: block; font-size: .82rem; font-weight: 500; color: var(--g700); padding: .5rem .85rem; border-radius: 6px; white-space: nowrap; }
.nav-dropdown a:hover { background: var(--g100); color: var(--g900); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: .35rem .5rem; }

/* OPO CUERPO CARDS */
.opo-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.opo-card:hover { box-shadow: var(--shadow); border-color: var(--gold-m); }
.opo-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.opo-card h3 { font-size: 1.1rem; margin: 0; }
.opo-req { display: flex; flex-direction: column; gap: .35rem; margin-top: .25rem; }
.opo-req-item { display: flex; gap: .6rem; font-size: .84rem; color: var(--g500); align-items: flex-start; }
.opo-req-item strong { color: var(--g900); min-width: 90px; flex-shrink: 0; }
.opo-why { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.opo-why li { font-size: .84rem; color: var(--g700); display: flex; align-items: flex-start; gap: .5rem; }
.opo-why li::before { content: '✓'; color: var(--gold-dd); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.g3-opo { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* STAT CARDS */
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 2rem 1.5rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--gold-dd); line-height: 1; margin-bottom: .5rem; }
.stat-label { font-size: .85rem; color: var(--g500); font-weight: 500; }

/* PROCESS STEPS */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 780px; margin: 0 auto; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { background: var(--gold-dd); color: #fff; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--g900); }
.step-body p { font-size: .9rem; color: var(--g500); line-height: 1.75; }

/* CTA BANNER DARK */
.cta-banner-dark { background: var(--g900); border-radius: var(--rxl); padding: 3.5rem; }

/* REVIEWS CAROUSEL */
.reviews-track-wrap { overflow: hidden; position: relative; }
.reviews-track-wrap::before, .reviews-track-wrap::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.reviews-track-wrap::before { left:0; background: linear-gradient(to right, var(--white), transparent); }
.reviews-track-wrap::after { right:0; background: linear-gradient(to left, var(--white), transparent); }
.reviews-track { display: flex; gap: 1.25rem; width: max-content; animation: scrollReviews 32s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.4rem 1.5rem; width: 300px; flex-shrink: 0; box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dd); color: #fff; font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: .88rem; color: var(--g900); }
.review-stars { color: #f4b400; font-size: .88rem; letter-spacing: 1px; }
.review-text { font-size: .83rem; color: var(--g500); line-height: 1.7; font-style: italic; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.1rem 1.25rem; font-size: .95rem; font-weight: 600; color: var(--g900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Inter', sans-serif; }
.faq-q:hover { background: var(--g50); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; font-size: .88rem; color: var(--g500); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .g2, .g2r { grid-template-columns: 1fr; gap: 2rem; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grupos-banner { grid-template-columns: 1fr; }
  .sec { padding: 3.75rem 0; }
  .materias-grid { grid-template-columns: 1fr 1fr 1fr; }
  .g3-opo { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 1.25rem; }
  .g3, .g4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.25rem 1.5rem; }
  .nav-inner { padding: 0 1.25rem; }
  .sec { padding: 3rem 0; }
  .materias-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 1.25rem 1.25rem; }
  .g3-opo { grid-template-columns: 1fr; }
}
