:root {
  --primary: #203b70;
  --primary-dark: #162b54;
  --accent: #d9a429;
  --ink: #15213a;
  --muted: #5d6879;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --line: #e1e6ed;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(25, 42, 73, .09);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.home-page { margin: 0; color: var(--ink); background: var(--surface); font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
.home-page img { display: block; max-width: 100%; }
.home-page a { color: inherit; text-decoration: none; }
.home-page button { font: inherit; }
.home-page h1, .home-page h2, .home-page h3, .home-page p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; background: var(--ink); color: #fff !important; transform: translateY(-150%); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(217, 164, 41, .65); outline-offset: 3px; }

.site-header { position: sticky; z-index: 1000; top: 0; height: 76px; display: flex; align-items: center; background: rgba(255,255,255,.96); border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(25,42,73,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { color: var(--primary) !important; font-size: 21px; font-weight: 800; letter-spacing: -.5px; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.nav-list { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
.nav-list > li { position: relative; }
.nav-list > li > a, .dropdown-toggle { display: flex; align-items: center; gap: 6px; min-height: 44px; padding: 10px 12px; color: #344057; background: transparent; border: 0; border-radius: 9px; font-weight: 500; cursor: pointer; }
.nav-list > li > a:hover, .dropdown-toggle:hover, .nav-list .is-active { color: var(--primary); background: #f1f4f9; }
.dropdown-toggle i { font-size: 11px; transition: transform .2s; }
.dropdown-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; width: 220px; margin: 0; padding: 8px; list-style: none; visibility: hidden; opacity: 0; transform: translateY(-6px); background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); transition: opacity .16s, transform .16s, visibility .16s; }
.nav-dropdown.is-open .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 9px 11px; color: #344057; border-radius: 8px; font-size: 14px; }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { color: var(--primary); background: #f2f5f9; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--primary); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 12px 21px; color: #fff !important; background: var(--primary); border: 1px solid var(--primary); border-radius: 11px; font-weight: 600; line-height: 1.3; transition: background .18s, border-color .18s, transform .18s; }
.button:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: 14px; }
.button-secondary { color: var(--primary) !important; background: transparent; }
.button-secondary:hover { color: #fff !important; }

.hero { position: relative; padding: 92px 0 78px; overflow: hidden; background: linear-gradient(100deg, #f7f8fb 0%, #fff 64%); }
.hero::before { content: ""; position: absolute; width: 480px; height: 480px; top: -250px; right: -100px; border: 1px solid rgba(32,59,112,.12); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr); gap: 80px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 17px; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(2.35rem, 5vw, 4.45rem); line-height: 1.08; letter-spacing: -.045em; }
.hero-lead { max-width: 680px; margin-bottom: 30px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.12rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-line { margin: 25px 0 0; color: #566274; font-size: 14px; font-weight: 500; }
.trust-line span { margin: 0 8px; color: var(--accent); }
.hero-visual { display: flex; justify-content: center; }
.visual-panel { position: relative; width: min(100%, 405px); aspect-ratio: 1; background: var(--primary); border-radius: 50% 50% 44% 56% / 55% 46% 54% 45%; }
.visual-panel::before, .visual-panel::after { content: ""; position: absolute; border-radius: 50%; }
.visual-panel::before { inset: 11%; border: 1px solid rgba(255,255,255,.2); }
.visual-panel::after { width: 55%; height: 55%; right: -14%; bottom: -13%; background: var(--accent); opacity: .13; }
.visual-ring { position: absolute; inset: 22%; border: 1px dashed rgba(255,255,255,.4); border-radius: 50%; }
.visual-center { position: absolute; inset: 33%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; background: rgba(255,255,255,.1); border-radius: 50%; }
.visual-center span { font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 800; line-height: 1; }.visual-center small { margin-top: 5px; font-weight: 500; }
.visual-note { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; min-width: 140px; padding: 12px 15px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow); color: var(--muted); font-size: 12px; line-height: 1.25; }
.visual-note i { color: var(--primary); font-size: 23px; }.visual-note strong { color: var(--ink); font-size: 14px; }.note-one { top: 14%; left: -10%; }.note-two { right: -8%; bottom: 16%; }

.feature-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item { display: flex; gap: 13px; padding: 28px 20px; }
.feature-item + .feature-item { border-left: 1px solid var(--line); }
.feature-item > i { flex: 0 0 38px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--primary); background: #edf1f7; border-radius: 10px; font-size: 18px; }
.feature-item h2 { margin-bottom: 5px; font-size: 14px; line-height: 1.4; }.feature-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.section { padding: 96px 0; }
.section-heading { max-width: 710px; }.section-heading h2 { margin-bottom: 18px; font-size: clamp(1.85rem, 3.3vw, 2.85rem); line-height: 1.2; letter-spacing: -.035em; }.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 17px; }
.section-heading-center { margin: 0 auto 44px; text-align: center; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 52px 0 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; padding: 32px 38px 4px 0; border-top: 1px solid var(--line); }
.process-list li:not(:last-child)::after { content: ""; position: absolute; top: -3px; right: 24px; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.step-number { display: block; margin-bottom: 26px; color: var(--primary); font-size: 14px; font-weight: 700; }.process-list h3 { margin-bottom: 9px; font-size: 21px; }.process-list p { max-width: 310px; margin: 0; color: var(--muted); }

.levels-section { background: var(--surface-soft); }
.levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.level-card { min-height: 250px; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .18s, box-shadow .18s; }
.level-card:hover { border-color: #bdc8d9; box-shadow: 0 10px 28px rgba(25,42,73,.06); }
.level-card > span { color: #a5afbd; font-size: 13px; font-weight: 700; }.level-card h3 { margin: 42px 0 13px; font-size: 22px; }.level-card p { margin: 0; color: var(--muted); font-size: 15px; }
.level-card-accent { border-top: 3px solid var(--accent); }.level-card-accent > span, .level-card-accent h3 { color: var(--primary); }
.section-action { margin-top: 34px; text-align: center; }.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary) !important; font-weight: 700; }.text-link i { transition: transform .18s; }.text-link:hover i { transform: translateX(4px); }

.success-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 44px; }.desktop-link { flex: 0 0 auto; margin-bottom: 8px; }
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.success-card { position: relative; min-height: 415px; overflow: hidden; border-radius: var(--radius); background: #edf0f4; }
.success-card::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(11,24,48,.82)); }
.success-card img { width: 100%; height: 100%; min-height: 415px; object-fit: cover; object-position: top center; transition: transform .3s; }.success-card:hover img { transform: scale(1.015); }.success-card span { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; color: #fff; font-size: 17px; font-weight: 600; }.mobile-link { display: none; }

.why-section { background: var(--primary-dark); color: #fff; }.why-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; align-items: center; }.why-section .eyebrow { color: #e5bd5c; }.why-section .section-heading > p:last-child { color: #c6cfdd; }.check-list { margin: 0; padding: 0; list-style: none; }.check-list li { display: flex; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-weight: 500; }.check-list i { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; color: var(--primary-dark); background: var(--accent); border-radius: 50%; }

.contact-cta { padding-bottom: 112px; }.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 54px 58px; color: #fff; background: var(--primary); border-radius: 24px; }.cta-panel h2 { max-width: 720px; margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; letter-spacing: -.03em; }.cta-panel p:not(.eyebrow) { max-width: 690px; color: #d7deea; }.cta-panel .eyebrow { color: #f0ca70; }.phone-link { display: inline-flex; gap: 9px; align-items: center; font-weight: 600; }.cta-actions { display: grid; gap: 11px; min-width: 230px; }.button-light { color: var(--primary) !important; background: #fff; border-color: #fff; }.button-light:hover { color: #fff !important; background: var(--primary-dark); }.button-outline-light { background: transparent; border-color: rgba(255,255,255,.55); }.button-outline-light:hover { background: #fff; color: var(--primary) !important; }

.site-footer { padding-top: 70px; color: #cad2df; background: #101b31; }.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.25fr; gap: 55px; }.site-footer .brand { color: #fff !important; }.footer-brand p { max-width: 310px; margin: 15px 0 20px; }.site-footer h2 { margin-bottom: 17px; color: #fff; font-size: 15px; }.site-footer ul { margin: 0; padding: 0; list-style: none; }.site-footer li { margin: 8px 0; }.site-footer a { color: #cad2df; font-size: 14px; }.site-footer a:hover { color: #fff; }.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }.footer-contact address { margin-bottom: 10px; font-style: normal; font-size: 14px; }.social-links { display: flex; gap: 8px; }.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; }.footer-bottom { margin-top: 55px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }.footer-bottom p { margin: 0; font-size: 13px; }
.floating-whatsapp { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: grid; place-items: center; width: 54px; height: 54px; color: #fff !important; background: #238b55; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 8px 24px rgba(16,40,28,.24); font-size: 25px; }

@media (max-width: 1050px) {
  .primary-nav { gap: 12px; }.nav-list > li > a, .dropdown-toggle { padding-inline: 8px; font-size: 14px; }.hero-grid { gap: 42px; }.feature-grid { grid-template-columns: repeat(2, 1fr); }.feature-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }.feature-item:nth-child(4) { border-top: 1px solid var(--line); }.levels-grid { grid-template-columns: repeat(2, 1fr); }.footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }.footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  body.menu-open { overflow: hidden; }.site-header { height: 70px; }.menu-toggle { display: block; }.primary-nav { position: fixed; inset: 70px 0 0; display: block; padding: 18px 20px 32px; visibility: hidden; opacity: 0; overflow-y: auto; background: #fff; transform: translateX(100%); transition: transform .22s, opacity .22s, visibility .22s; }.primary-nav.is-open { visibility: visible; opacity: 1; transform: translateX(0); }.nav-list { display: block; }.nav-list > li > a, .dropdown-toggle { width: 100%; justify-content: space-between; min-height: 50px; padding-inline: 12px; font-size: 16px; text-align: left; }.dropdown-menu { position: static; width: 100%; max-height: 0; padding: 0 0 0 14px; visibility: hidden; opacity: 1; overflow: hidden; transform: none; background: #f5f7fa; border: 0; box-shadow: none; transition: max-height .22s, visibility .22s, padding .22s; }.nav-dropdown.is-open .dropdown-menu { max-height: 330px; padding-top: 7px; padding-bottom: 7px; visibility: visible; }.dropdown-menu a { padding: 10px 12px; font-size: 15px; }.nav-appointment { width: 100%; margin-top: 18px; }.hero { padding: 66px 0 60px; }.hero-grid { grid-template-columns: 1fr; }.hero-content { max-width: 700px; }.hero-visual { display: none; }.section { padding: 72px 0; }.process-list { grid-template-columns: 1fr; }.process-list li { padding: 26px 0; }.process-list li:not(:last-child)::after { display: none; }.step-number { margin-bottom: 12px; }.success-card, .success-card img { min-height: 330px; }.why-grid { grid-template-columns: 1fr; gap: 42px; }.cta-panel { grid-template-columns: 1fr; padding: 45px 38px; }.cta-actions { grid-template-columns: repeat(2, 1fr); }.footer-grid { grid-template-columns: repeat(2, 1fr); }.footer-contact { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--container)); }.hero { padding: 52px 0 48px; }.hero h1 { font-size: clamp(2.15rem, 11.5vw, 3.15rem); }.button-row { display: grid; }.button-row .button { width: 100%; }.trust-line { display: flex; flex-wrap: wrap; gap: 4px 7px; }.trust-line span { margin: 0; }.feature-item { padding: 23px 12px 23px 0; }.feature-item:nth-child(even) { padding-left: 12px; }.feature-item h2 { font-size: 13px; }.feature-item p { font-size: 12px; }.section { padding: 58px 0; }.section-heading > p:last-child { font-size: 16px; }.levels-grid { grid-template-columns: 1fr; }.level-card { min-height: auto; }.level-card h3 { margin-top: 24px; }.success-heading { margin-bottom: 30px; }.desktop-link { display: none; }.success-grid { grid-template-columns: 1fr; }.success-card, .success-card img { min-height: 390px; }.mobile-link { display: block; margin-top: 27px; text-align: center; }.cta-panel { padding: 36px 24px; border-radius: 18px; }.cta-actions { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1fr; gap: 34px; }.footer-contact { grid-column: auto; }.site-footer { padding-top: 55px; }.floating-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

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