:root {
      --c0: #04080f;
      --c1: #0a1525;
      --c2: #0f2040;
      --c3: #1a4a8a;
      --accent:  #4facfe;
      --accent2: #74c5fe;
      --accent3: #a8d8ff;
      --gold:    #f0c674;
      --w:   #ffffff;
      --w80: rgba(255 255 255 / 0.80);
      --w50: rgba(255 255 255 / 0.50);
      --w20: rgba(255 255 255 / 0.20);
      --w10: rgba(255 255 255 / 0.10);
      --w06: rgba(255 255 255 / 0.06);
      --glow: rgba(79 172 254 / 0.22);
      --accent-glow:         rgba(79 172 254 / 0.08);
      --accent-border:       rgba(79 172 254 / 0.20);
      --accent-border-hover: rgba(79 172 254 / 0.40);
      --tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      --r:  16px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--c0);
      color: var(--w80);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ══════════════════════════════════
       NAVBAR
    ══════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(4,8,15,0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(79,172,254,0.12);
      box-shadow: 0 4px 40px rgba(0,0,0,0.5);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; flex-shrink: 0;
      transition: filter var(--tr), transform var(--tr);
    }
    .nav-logo:hover { filter: drop-shadow(0 0 10px rgba(79,172,254,0.5)); transform: translateY(-1px); }
    .nav-logo-symbol { height: 38px; width: auto; flex-shrink: 0; }
    .nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
    .nav-logo-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--w); letter-spacing: 0.18em; line-height: 1; white-space: nowrap; }
    .nav-logo-sub { font-size: 0.56rem; color: rgba(255 255 255 / 0.45); letter-spacing: 0.20em; line-height: 1; white-space: nowrap; }

    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nav-links a { font-weight: 500; font-size: 0.90rem; color: var(--w80); text-decoration: none; padding: 8px 14px; border-radius: 8px; letter-spacing: 0.015em; transition: color var(--tr), background var(--tr); }
    .nav-links a:hover { color: var(--w); background: var(--w10); }
    .nav-links a.active { color: var(--accent2); }
    .nav-cta { color: var(--c0) !important; background: linear-gradient(120deg, var(--accent), var(--accent2)) !important; padding: 9px 22px !important; border-radius: 50px !important; font-weight: 700 !important; box-shadow: 0 4px 20px rgba(79,172,254,0.4) !important; transition: transform var(--tr), box-shadow var(--tr) !important; }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(79,172,254,0.6) !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 8px; background: none; border: none; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--w80); border-radius: 2px; transition: all var(--tr); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 4px; border-top: 1px solid var(--w10); background: rgba(4,8,15,0.96); }
    .nav-mobile.open { display: flex; }
    .nav-mobile a { color: var(--w80); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 12px 14px; border-radius: 10px; transition: background var(--tr), color var(--tr); }
    .nav-mobile a:hover { background: var(--w10); color: var(--w); }
    .nav-mobile .cta-m { margin-top: 8px; text-align: center; background: linear-gradient(120deg, var(--accent), var(--accent2)); color: var(--c0) !important; font-weight: 700; border-radius: 50px; box-shadow: 0 4px 20px rgba(79,172,254,0.4); }

    /* ══════════════════════════════════
       PAGE HERO
    ══════════════════════════════════ */
    .page-hero {
      position: relative;
      padding: 140px 32px 80px;
      overflow: hidden;
      background: linear-gradient(180deg, var(--c1) 0%, var(--c0) 100%);
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -120px; left: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(79,172,254,0.09) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(79,172,254,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

    .page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.78rem; color: var(--w50); animation: fade-up 0.6s 0.05s both; }
    .page-breadcrumb a { color: var(--accent2); text-decoration: none; transition: color var(--tr); }
    .page-breadcrumb a:hover { color: var(--w); }
    .page-breadcrumb svg { width: 12px; height: 12px; fill: none; stroke: var(--w20); stroke-width: 2.5; }

    .page-label { display: inline-flex; align-items: center; gap: 8px; color: var(--accent2); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; animation: fade-up 0.6s 0.1s both; }
    .page-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }

    .page-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.85rem, 3.2vw, 2.7rem); letter-spacing: -0.018em; line-height: 1.18; color: var(--w); max-width: 640px; animation: fade-up 0.6s 0.18s both; }
    .page-title .hl { display: inline-block; background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 100%; animation: shimmer 5s linear infinite; }

    .page-sub { font-size: 0.96rem; font-weight: 300; color: var(--w50); max-width: 520px; line-height: 1.80; margin-top: 12px; animation: fade-up 0.6s 0.28s both; }

    /* ══════════════════════════════════
       CONTACT CARDS ROW
    ══════════════════════════════════ */
    .contact-cards-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 64px 32px 0;
    }

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

    .contact-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(79,172,254,0.12);
      border-radius: var(--r);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      overflow: hidden;
      transition: background var(--tr), border-color var(--tr), transform var(--tr), box-shadow var(--tr);
      text-decoration: none;
      color: inherit;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--card-line, var(--accent2)), transparent);
      opacity: 0;
      transition: opacity var(--tr);
    }

    .contact-card:hover {
      background: rgba(79,172,254,0.07);
      border-color: rgba(79,172,254,0.28);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    .contact-card:hover::before { opacity: 1; }

    .card-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      transition: transform var(--tr), box-shadow var(--tr);
    }

    .contact-card:hover .card-icon { transform: scale(1.1); }

    .card-label { font-size: 0.66rem; font-weight: 500; color: var(--w50); letter-spacing: 0.14em; text-transform: uppercase; }

    .card-value { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; color: var(--w); line-height: 1.28; }

    .card-action {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.74rem; font-weight: 500; letter-spacing: 0.02em; color: var(--accent2);
      margin-top: auto;
      transition: gap var(--tr);
    }

    .contact-card:hover .card-action { gap: 9px; }
    .card-action svg { width: 13px; height: 13px; }

    .ci-whatsapp { background: rgba(37,211,102,0.12); --card-line: #25d366; }
    .ci-instagram { background: rgba(225,48,108,0.12); --card-line: #e1306c; }
    .ci-email { background: rgba(79,172,254,0.12); --card-line: var(--accent2); }
    .ci-phone { background: rgba(245,158,11,0.12); --card-line: #f59e0b; }

    /* ══════════════════════════════════
       LOCATIONS SECTION
    ══════════════════════════════════ */
    .locations-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 32px 100px;
    }

    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--accent2); font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
    }
    .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }

    .section-title {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: clamp(1.6rem, 2.8vw, 2.3rem);
      letter-spacing: -0.012em;
      line-height: 1.20; color: var(--w); margin-bottom: 16px;
    }
    .section-title .hl { background: linear-gradient(120deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    .locations-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 52px;
    }

    .location-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(79,172,254,0.12);
      border-radius: 20px;
      overflow: hidden;
      transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
    }

    .location-card:hover {
      border-color: rgba(79,172,254,0.3);
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
      transform: translateY(-4px);
    }

    /* Map embed wrapper */
    .map-wrap {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      background: var(--c1);
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      /* Filtro escuro para harmonizar com o tema */
      filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.9);
      transition: filter var(--tr);
    }

    .location-card:hover .map-wrap iframe {
      filter: invert(90%) hue-rotate(180deg) brightness(0.95) saturate(1);
    }

    /* Badge sobreposto no mapa */
    .map-badge {
      position: absolute;
      top: 14px; left: 14px;
      background: rgba(4,8,15,0.88);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(79,172,254,0.25);
      border-radius: 50px;
      padding: 6px 14px;
      display: flex; align-items: center; gap: 7px;
      font-size: 0.70rem; color: var(--accent2); font-weight: 500;
      letter-spacing: 0.16em;
      z-index: 2;
      pointer-events: none;
    }

    .map-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
      animation: pulseD 2.2s ease-in-out infinite;
    }

    @keyframes pulseD { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

    /* Location info below map */
    .location-info {
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .location-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .location-city {
      font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 1.08rem; color: var(--w); line-height: 1.28; letter-spacing: -0.01em;
    }

    .location-tag {
      background: var(--accent-glow);
      border: 1px solid var(--accent-border);
      color: var(--accent2); font-size: 0.68rem; font-weight: 500;
      padding: 4px 10px; border-radius: 50px; letter-spacing: 0.04em;
      white-space: nowrap; flex-shrink: 0;
    }

    .location-address {
      display: flex; align-items: flex-start; gap: 10px;
    }

    .location-address svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
    .location-address span { font-size: 0.84rem; font-weight: 300; color: var(--w50); line-height: 1.55; }

    .location-divider { height: 1px; background: rgba(255 255 255 / 0.07); }

    .location-actions {
      display: flex; gap: 10px; flex-wrap: wrap;
    }

    .loc-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 9px 18px; border-radius: 50px;
      font-size: 0.82rem; font-weight: 700; text-decoration: none;
      transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
      letter-spacing: 0.015em;
    }

    .loc-btn svg { width: 14px; height: 14px; }

    .loc-btn-primary {
      background: linear-gradient(120deg, var(--accent), var(--accent2));
      color: var(--c0);
      box-shadow: 0 4px 16px rgba(79 172 254 / 0.35);
    }

    .loc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79 172 254 / 0.55); }

    .loc-btn-secondary {
      background: rgba(255 255 255 / 0.08);
      border: 1px solid rgba(255 255 255 / 0.25);
      color: var(--w);
      backdrop-filter: blur(10px);
    }

    .loc-btn-secondary:hover { background: rgba(255 255 255 / 0.16); border-color: rgba(79 172 254 / 0.50); transform: translateY(-1px); }

    /* ══════════════════════════════════
       HORÁRIOS
    ══════════════════════════════════ */
    .schedule-section {
      background: linear-gradient(180deg, var(--c0) 0%, var(--c1) 50%, var(--c0) 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }

    .schedule-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(79,172,254,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .schedule-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
      margin-top: 52px;
    }

    .schedule-table {
      display: flex; flex-direction: column; gap: 0;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(79,172,254,0.1);
      border-radius: var(--r);
      overflow: hidden;
    }

    .schedule-row {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background var(--tr);
    }

    .schedule-row:last-child { border-bottom: none; }
    .schedule-row:hover { background: rgba(79,172,254,0.05); }

    .schedule-row.header {
      background: rgba(79,172,254,0.08);
      border-bottom: 1px solid rgba(79,172,254,0.15);
    }

    .sched-day { font-size: 0.88rem; font-weight: 300; color: var(--w80); }
    .sched-day.header-label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; color: var(--accent2); letter-spacing: 0.14em; text-transform: uppercase; }

    .sched-time {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.88rem; letter-spacing: -0.01em; color: var(--w);
    }

    .sched-time.header-label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; color: var(--accent2); letter-spacing: 0.14em; text-transform: uppercase; }

    .sched-closed { color: var(--w50); font-size: 0.82rem; font-weight: 300; font-style: italic; }

    .sched-badge {
      background: rgba(34 197 94 / 0.12);
      border: 1px solid rgba(34 197 94 / 0.25);
      color: #4ade80;
      font-size: 0.65rem; font-weight: 500;
      padding: 3px 9px; border-radius: 50px;
      letter-spacing: 0.04em;
    }

    /* Info box */
    .schedule-info {
      display: flex; flex-direction: column; gap: 20px;
    }

    .info-box {
      background: var(--w06);
      border: 1px solid rgba(79 172 254 / 0.12);
      border-radius: var(--r);
      padding: 28px;
      display: flex; flex-direction: column; gap: 12px;
      transition: background var(--tr), border-color var(--tr);
    }

    .info-box:hover { background: rgba(79 172 254 / 0.07); border-color: rgba(79 172 254 / 0.28); }

    .info-box-icon { font-size: 26px; }

    .info-box-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; line-height: 1.28; color: var(--w); }
    .info-box-text { font-size: 0.88rem; font-weight: 300; color: var(--w50); line-height: 1.70; }

    /* ══════════════════════════════════
       CTA BANNER
    ══════════════════════════════════ */
    .cta-wrap {
      background: linear-gradient(160deg, var(--c1) 0%, var(--c2) 50%, #1a5fa8 100%);
      padding: 0; overflow: hidden; position: relative;
    }
    .cta-wrap::before { content: ''; position: absolute; top: -80px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(79 172 254 / 0.15) 0%, transparent 70%); pointer-events: none; }
    .cta-inner { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
    .cta-text { flex: 1; min-width: 280px; }
    .cta-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.012em; line-height: 1.22; color: var(--w); margin-bottom: 12px; }
    .cta-sub { font-size: 0.96rem; font-weight: 300; line-height: 1.70; color: var(--w80); }
    .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
    .cta-note { font-size: 0.74rem; letter-spacing: 0.02em; color: var(--w50); text-align: right; }

    /* ══════════════════════════════════
       BUTTONS
    ══════════════════════════════════ */
    .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(120deg, var(--accent), var(--accent2)); color: var(--c0); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em; padding: 13px 28px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 30px rgba(79 172 254 / 0.42); transition: transform var(--tr), box-shadow var(--tr); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(79 172 254 / 0.60); }
    .btn-primary svg { width: 17px; height: 17px; }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer { background: linear-gradient(160deg, var(--c0) 0%, #040a14 100%); border-top: 1px solid rgba(79 172 254 / 0.10); position: relative; overflow: hidden; }
    footer::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79 172 254 / 0.06) 0%, transparent 70%); pointer-events: none; }
    .footer-top { max-width: 1200px; margin: 0 auto; padding: 64px 32px 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-desc { font-size: 0.84rem; font-weight: 300; color: var(--w50); line-height: 1.75; max-width: 280px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn { width: 38px; height: 38px; border-radius: 10px; background: var(--w10); border: 1px solid var(--w20); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background var(--tr), border-color var(--tr), transform var(--tr); }
    .social-btn:hover { background: rgba(79 172 254 / 0.20); border-color: var(--accent-border-hover); transform: translateY(-2px); }
    .social-btn svg { width: 15px; height: 15px; fill: var(--w80); }
    .footer-col h5 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.86rem; color: var(--w); margin-bottom: 18px; letter-spacing: 0.08em; text-transform: uppercase; padding-bottom: 10px; position: relative; }
    .footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 2px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 0.84rem; color: var(--w50); text-decoration: none; transition: color var(--tr), padding-left var(--tr); }
    .footer-col ul a:hover { color: var(--w80); padding-left: 4px; }
    .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .contact-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
    .contact-item span { font-size: 0.82rem; font-weight: 300; color: var(--w50); line-height: 1.55; }
    .footer-bottom { border-top: 1px solid var(--w10); max-width: 1200px; margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-bottom p { font-size: 0.78rem; color: var(--w50); }
    .footer-bottom span { color: var(--accent2); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 0.78rem; color: var(--w50); text-decoration: none; transition: color var(--tr); }
    .footer-legal a:hover { color: var(--w80); }

    .wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 300; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform var(--tr), box-shadow var(--tr); }
    .wa-fab:hover { transform: translateY(-3px) scale(1.07); box-shadow: 0 12px 36px rgba(37,211,102,0.65); }
    .wa-fab svg { width: 26px; height: 26px; fill: #fff; }

    /* ══════════════════════════════════
       REVEAL + ANIMATIONS
    ══════════════════════════════════ */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
    @keyframes shimmer { to { background-position: 200% 0%; } }
    @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

    /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
    @media (max-width: 960px) {
      .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .locations-grid { grid-template-columns: 1fr; }
      .schedule-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-inner { padding: 0 20px; }
      .page-hero { padding: 120px 20px 60px; }
      .contact-cards-section { padding: 48px 20px 0; }
      .locations-section { padding: 60px 20px 80px; }
      .schedule-inner { padding: 0 20px; }
      .cta-inner { padding: 60px 20px; }
      .cta-actions { align-items: flex-start; }
      .cta-note { text-align: left; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 28px; }
      .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; }
      .wa-fab { bottom: 20px; right: 20px; }
      .contact-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .schedule-grid { grid-template-columns: 1fr; gap: 24px; }
      /* info boxes abaixo das tabelas */
      .schedule-inner > div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
    }

    @media (max-width: 480px) {
      .contact-cards-grid { grid-template-columns: 1fr; }
      .location-actions { flex-direction: column; }
      .loc-btn { justify-content: center; }
    }