﻿:root {
      --header-gray: #646464;
      --navy: #112a46;
      --blue: #176eb7;
      --sky: #eaf5ff;
      --gold: #dcae43;
      --ink: #1c2836;
      --muted: #617086;
      --line: #dbe7f2;
      --soft: #f6fafc;
      --white: #ffffff;
      --whatsapp: #25d366;
      --shadow: 0 18px 50px rgba(17, 42, 70, .13);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: Inter, Arial, sans-serif;
      background: var(--white);
      line-height: 1.6;
    }

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

    .container {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      background: var(--navy);
      color: rgba(255, 255, 255, .92);
      font-size: 14px;
    }

    .topbar .container {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .topbar a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-right: 18px;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: var(--header-gray);
      border-bottom: 1px solid rgba(255, 255, 255, .18);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    }

    .header .container {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 320px;
    }

    .brand img {
      width: 220px;
      height: auto;
      max-height: 62px;
      object-fit: contain;
    }

    .brand-title {
      color: var(--white);
      font-weight: 800;
      font-size: 18px;
      line-height: 1.15;
      white-space: nowrap;
    }

    .brand-title span {
      display: block;
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
      font-weight: 600;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      color: rgba(255, 255, 255, .92);
      font-size: 15px;
      font-weight: 700;
    }

    .nav a:hover { color: #fff4d7; }

    .menu-toggle {
      display: none;
      border: 0;
      background: rgba(255, 255, 255, .16);
      color: var(--white);
      width: 42px;
      height: 42px;
      border-radius: 8px;
      font-size: 22px;
    }

    .hero {
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(17, 42, 70, .92), rgba(17, 42, 70, .68)),
        url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1800&q=80") center/cover;
      color: var(--white);
    }

    .hero .container {
      min-height: 690px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
      align-items: center;
      gap: 52px;
      padding: 82px 0 112px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #fff4d7;
      background: rgba(220, 174, 67, .18);
      border: 1px solid rgba(220, 174, 67, .45);
      border-radius: 999px;
      padding: 8px 13px;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .light-eyebrow {
      color: var(--blue);
      background: var(--sky);
      border-color: var(--line);
    }

    h1 {
      margin: 0;
      max-width: 790px;
      font-size: clamp(40px, 5.8vw, 72px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .hero p {
      max-width: 710px;
      margin: 22px 0 0;
      color: rgba(255, 255, 255, .88);
      font-size: 19px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 13px 20px;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

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

    .button-primary {
      background: var(--gold);
      color: #1b2430;
      box-shadow: 0 16px 34px rgba(220, 174, 67, .32);
    }

    .button-whatsapp {
      background: var(--whatsapp);
      color: var(--white);
      box-shadow: 0 16px 34px rgba(37, 211, 102, .32);
    }

    .button-secondary {
      color: var(--white);
      border-color: rgba(255, 255, 255, .38);
      background: rgba(255, 255, 255, .1);
    }

    .hero-panel {
      background: rgba(255, 255, 255, .95);
      color: var(--ink);
      border-radius: 8px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .hero-panel h2 {
      margin: 0 0 18px;
      color: var(--navy);
      font-size: 26px;
      line-height: 1.18;
    }

    .program-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .program-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      background: var(--soft);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .program-list i {
      color: var(--blue);
      font-size: 20px;
      margin-top: 2px;
    }

    .stats-band {
      position: relative;
      margin-top: -54px;
      z-index: 3;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      background: var(--white);
      padding: 18px;
      border-radius: 8px;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .stat {
      padding: 20px;
      border-radius: 8px;
      background: var(--soft);
    }

    .stat strong {
      display: block;
      color: var(--navy);
      font-size: 28px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    section { padding: 86px 0; }

    .section-title {
      max-width: 820px;
      margin: 0 auto 44px;
      text-align: center;
    }

    .section-title .kicker {
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .section-title h2 {
      margin: 8px 0 14px;
      color: var(--navy);
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr);
      gap: 46px;
      align-items: center;
    }

    .copy h3 {
      color: var(--navy);
      font-size: 30px;
      line-height: 1.2;
      margin: 0 0 16px;
    }

    .copy p {
      margin: 0 0 16px;
      color: #41506a;
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      color: #314057;
      font-weight: 700;
    }

    .check-list i {
      color: var(--blue);
      font-size: 19px;
      margin-top: 2px;
    }

    .photo-frame {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: var(--shadow);
      min-height: 430px;
      background: var(--sky);
    }

    .photo-frame img {
      width: 100%;
      height: 100%;
      min-height: 430px;
      object-fit: cover;
    }

    .photo-badge {
      position: absolute;
      left: 22px;
      bottom: 22px;
      max-width: 310px;
      padding: 18px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .95);
      box-shadow: 0 12px 26px rgba(17, 42, 70, .14);
    }

    .photo-badge strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
    }

    .photo-badge span {
      color: var(--muted);
      font-size: 14px;
    }

    .soft-section { background: var(--soft); }

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

    .card {
      min-height: 100%;
      padding: 26px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 10px 30px rgba(17, 42, 70, .06);
    }

    .card i {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      color: var(--blue);
      background: var(--sky);
      border-radius: 8px;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .card h3 {
      margin: 0 0 10px;
      color: var(--navy);
      font-size: 20px;
      line-height: 1.25;
    }

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

    .local-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .local-box {
      padding: 28px;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 10px 30px rgba(17, 42, 70, .06);
    }

    .local-box h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 24px;
    }

    .local-box p {
      margin: 0 0 14px;
      color: var(--muted);
    }

    .location-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .location-tags span {
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--navy);
      background: var(--sky);
      font-weight: 800;
      font-size: 14px;
    }

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

    .step {
      padding: 25px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
    }

    .step .num {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: var(--white);
      border-radius: 50%;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .step h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 19px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
    }

    .accent {
      background: linear-gradient(135deg, var(--navy), #0d4f84);
      color: var(--white);
    }

    .accent .section-title h2,
    .accent .section-title p,
    .accent .section-title .kicker { color: var(--white); }

    .accent-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .accent-box {
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 8px;
      padding: 24px;
      background: rgba(255, 255, 255, .08);
    }

    .accent-box h3 {
      margin: 0 0 8px;
      color: #fff4d7;
      font-size: 21px;
    }

    .accent-box p {
      margin: 0;
      color: rgba(255, 255, 255, .84);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      padding: 18px 20px;
    }

    summary {
      cursor: pointer;
      color: var(--navy);
      font-weight: 800;
    }

    details p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-panel {
      padding: 28px;
      border-radius: 8px;
      background: var(--navy);
      color: var(--white);
    }

    .contact-item {
      display: flex;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .contact-item:last-child { border-bottom: 0; }

    .contact-item i {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      flex: 0 0 42px;
      border-radius: 8px;
      color: #fff4d7;
      background: rgba(255, 255, 255, .1);
      font-size: 20px;
    }

    .contact-item h3 {
      margin: 0 0 5px;
      font-size: 18px;
    }

    .contact-item p {
      margin: 0;
      color: rgba(255, 255, 255, .82);
    }

    .map {
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line);
      min-height: 440px;
      background: var(--sky);
      display: grid;
    }

    .map iframe {
      width: 100%;
      min-height: 318px;
      border: 0;
      display: block;
    }

    .map-card {
      padding: 22px;
      background: var(--white);
      border-top: 1px solid var(--line);
    }

    .map-card h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 22px;
    }

    .map-card p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, .78);
      padding: 36px 0 22px;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .footer .container {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items: center;
    }

    .footer-logo img {
      width: 220px;
      max-height: 64px;
      object-fit: contain;
    }

    .footer strong {
      display: block;
      margin-top: 14px;
      color: var(--white);
      font-size: 18px;
    }

    .footer-region {
      margin-top: 6px;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .footer-note {
      text-align: right;
      font-size: 14px;
    }

    .footer-note a {
      color: #fff4d7;
      font-weight: 800;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 30;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--whatsapp);
      color: var(--white);
      font-size: 29px;
      box-shadow: 0 14px 30px rgba(37, 211, 102, .36);
    }

    @media (max-width: 980px) {
      .brand { min-width: 0; }
      .brand-title { display: none; }

      .nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 84px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        background: var(--header-gray);
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 8px;
        box-shadow: var(--shadow);
      }

      .nav.open { display: flex; }
      .menu-toggle { display: grid; place-items: center; }

      .hero .container,
      .two-col,
      .contact-grid,
      .local-grid { grid-template-columns: 1fr; }

      .hero .container {
        min-height: auto;
        padding: 70px 0 100px;
      }

      .stats-grid,
      .cards,
      .timeline,
      .accent-grid,
      .faq-grid,
      .footer .container { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .topbar .container { justify-content: center; }
      .topbar a { margin-right: 8px; }
      .brand img { width: 190px; max-height: 54px; }
      .hero p { font-size: 17px; }
      section { padding: 68px 0; }

      .stats-grid,
      .cards,
      .timeline,
      .accent-grid,
      .faq-grid,
      .footer .container { grid-template-columns: 1fr; }

      .stat { padding: 18px; }

      .photo-badge {
        position: static;
        max-width: none;
        border-radius: 0;
      }

      .footer-note { text-align: left; }
    }

