/* ============================================================
   FLASH — CSS v12 (redesign: carrossel, cards, mobile, copy)
   ============================================================ */

   :root {
    --mustard:       #D4A017;
    --mustard-light: #E8C547;
    --mustard-dim:   rgba(212, 160, 23, 0.12);
    --orange:        #D4A017;
    --orange-light:  #E8C547;
    --orange-dim:    rgba(212, 160, 23, 0.12);
    --blue:          #E8C547;
    --blue-dark:     #A88410;
    --blue-dim:      rgba(212, 160, 23, 0.15);
    --gold:          #D4A017;
    --gold-dim:      rgba(212, 160, 23, 0.12);
    --green:         #25d366;
    --white:         #ffffff;
    --text:          #f5f5f5;
    --text-dark:     #0E4526;
    --muted:         #b8d4c0;
    --glass-bg:      rgba(255, 255, 255, 0.06);
    --glass-border:  rgba(255, 255, 255, 0.14);
    --glass-shadow:  0 25px 50px rgba(0, 0, 0, 0.35);
    --radius:        24px;
    --radius-sm:     14px;
    --bg-1:          #0E4526;
    --bg-2:          #0a3620;
    --transition:    0.25s ease;
    --header-h:      76px;
    --surface: rgba(8, 51, 24, 0.62);
    --surface-2: rgba(8, 51, 24, 0.52);
    --surface-border: rgba(255, 255, 255, 0.14);
    --surface-border-strong: rgba(255, 255, 255, 0.22);
    --surface-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
    --card-glow-blue: rgba(212,160,23,.18);
    --card-glow-orange: rgba(255,255,255,.08);
    color-scheme: dark;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
  }
  
  body {
    font-family: "Inter", sans-serif;
    background: var(--bg-1);
    background-image:
      radial-gradient(ellipse 90% 55% at 50% -8%, rgba(212,160,23,.12) 0%, transparent 65%),
      radial-gradient(ellipse 50% 40% at 95% 80%, rgba(255,255,255,.06) 0%, transparent 55%),
      radial-gradient(ellipse 50% 50% at 0% 60%, rgba(212,160,23,.08) 0%, transparent 55%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
  }
  
  /* ── Scrollbar ─────────────────────────────────────────── */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg-1); }
  ::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.22); }
  
  /* ── Selection ─────────────────────────────────────────── */
  ::selection { background: rgba(212,160,23,.35); color: #fff; }
  
  /* ── Focus visible ─────────────────────────────────────── */
  :focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
  }
  
  /* ── Skip link ─────────────────────────────────────────── */
  .skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--orange); color: #fff;
    padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px;
    font-weight: 700; font-size: 0.9rem; z-index: 9999;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }
  
  /* ── Screen-reader only ────────────────────────────────── */
  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  
  /* ── Reduced motion ────────────────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    [data-animate] { opacity: 1 !important; transform: none !important; }
    .orb           { animation: none !important; }
    .pill-dot      { animation: none !important; }
  }
  
  .no-js [data-animate] { opacity: 1; transform: none; }
  
  img { max-width: 100%; display: block; }
  a   { color: inherit; text-decoration: none; }
  button { font-family: inherit; }
  h1, h2, h3 { text-wrap: balance; }
  
  .container { width: min(1140px, 92%); margin: 0 auto; }
  
  /* ── GLASS ──────────────────────────────────────────────── */
  .glass {
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%), var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--surface-shadow), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  
  @supports not (backdrop-filter: blur(1px)) {
    .glass { background: rgba(10,54,32,0.92); }
  }
  
  .gradient-text {
    background: linear-gradient(135deg, var(--mustard) 0%, var(--mustard-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* ── Field errors ──────────────────────────────────────── */
  .field-error {
    display: block; color: #f87171;
    font-size: 0.78rem; margin-top: 0.25rem; padding-left: 0.2rem;
  }
  
  /* ══════════════════════════════════════════════════════════
     HEADER
     ══════════════════════════════════════════════════════════ */
  .site-header {
    position: fixed; top: 0; width: 100%; z-index: 200;
    background: linear-gradient(180deg, rgba(14,69,38,0.85) 0%, transparent 100%);
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  .site-header.scrolled {
    background: rgba(12,26,52,.96) !important;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding: 0.75rem 0; height: var(--header-h);
  }
  .logo img {
    height: 60px; width: auto;
    filter: brightness(1.2) drop-shadow(0 2px 12px rgba(255,255,255,0.15));
    transition: transform var(--transition), filter var(--transition);
  }
  .logo:hover img  { transform: scale(1.05); filter: brightness(1.4) drop-shadow(0 2px 18px rgba(255,255,255,0.28)); }
  .logo:focus-visible { outline-offset: 6px; }
  
  .nav {
    display: none; flex-direction: column; gap: 0.3rem;
    position: absolute; top: calc(var(--header-h) + 8px); right: 4%;
    background: rgba(14,69,38,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1); padding: 0.75rem; border-radius: 20px;
    box-shadow: var(--glass-shadow); min-width: 190px; animation: menuIn 0.2s ease;
  }
  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .nav.active { display: flex; }
  .nav-link {
    font-weight: 600; color: rgba(255,255,255,0.88);
    padding: 0.6rem 1rem; border-radius: 12px; font-size: 0.93rem;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
  }
  .nav-link:hover  { background: rgba(255,255,255,0.09); color: #fff; padding-left: 1.3rem; }
  .nav-link.active { background: rgba(212,160,23,0.12); color: var(--orange); }
  
  .menu-toggle {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; border: none; background: transparent; cursor: pointer;
    padding: 8px; border-radius: 10px; transition: background var(--transition);
  }
  .menu-toggle:hover { background: rgba(255,255,255,0.07); }
  .bar {
    width: 24px; height: 2.5px; background: rgba(255,255,255,0.9); border-radius: 999px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
    display: block; transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] .bar-1 { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .bar-2 { opacity: 0; transform: scaleX(0); }
  .menu-toggle[aria-expanded="true"] .bar-3 { transform: translateY(-7.5px) rotate(-45deg); }
  
  /* ── BUTTONS ─────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.8rem 1.65rem; border-radius: 999px;
    font-weight: 700; font-size: 0.94rem; border: 2px solid transparent;
    cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    white-space: nowrap; position: relative; overflow: hidden; min-height: 44px;
  }
  .btn:hover  { transform: translateY(-2px); }
  .btn:active { transform: translateY(0) scale(0.97); }
  .btn-lg     { padding: 1rem 2rem; font-size: 1rem; }
  
  .btn-primary { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%); color: var(--white); }
  .btn-glow    { box-shadow: 0 0 20px rgba(212,160,23,.38), 0 8px 24px rgba(212,160,23,.22); }
  .btn-glow:hover { box-shadow: 0 0 36px rgba(212,160,23,.58), 0 14px 32px rgba(212,160,23,.32); }
  
  .btn-ghost  { background: rgba(255,255,255,.07); color: var(--white); border-color: rgba(255,255,255,.18); }
  .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); }
  
  .btn-outline { background: transparent; color: var(--orange); border-color: rgba(212,160,23,.45); }
  .btn-outline:hover { background: rgba(212,160,23,.09); border-color: var(--orange); }
  
  .btn-outline-gold { background: transparent; color: var(--gold); border-color: rgba(245,158,11,.45); }
  .btn-outline-gold:hover { background: rgba(245,158,11,.09); border-color: var(--gold); }
  
  .btn-header { display: none; }
  .btn-full   { width: 100%; }
  .btn[data-loading="true"] { pointer-events: none; opacity: 0.75; }
  
  /* ══════════════════════════════════════════════════════════
     HERO
     ══════════════════════════════════════════════════════════ */
  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 8rem 0 0;
    overflow: hidden;
  }
  
  .hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(212,160,23,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,160,23,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
  }
  
  .hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 9s ease-in-out infinite;
    will-change: transform;
  }
  
  .orb-1 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(212,160,23,.42), transparent 70%);
    top: -160px;
    left: -170px;
  }
  
  .orb-2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(212,160,23,.32), transparent 70%);
    top: 30%;
    right: -110px;
    animation-delay: -4.5s;
  }
  
  .orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212,160,23,.22), transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: -2.5s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-28px) scale(1.05); }
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 3rem;
  }
  
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(212,160,23,.18);
    border: 1px solid rgba(212,160,23,.38);
    color: #90c3ff;
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.83rem;
    letter-spacing: 0.025em;
    margin-bottom: 1.2rem;
  }
  
  .pill-dot {
    width: 7px;
    height: 7px;
    background: #90c3ff;
    border-radius: 50%;
    animation: pulseDot 2.2s ease-in-out infinite;
    flex-shrink: 0;
  }
  
  .pill-badge {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.12rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.06em;
    margin-left: 0.2rem;
  }
  
  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.75); }
  }
  
  .hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.06;
    margin: 0 0 1.2rem;
    color: var(--white);
    letter-spacing: -0.03em;
  }
  
  .hero-description {
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
    max-width: 760px;
    margin: 0 auto 1.2rem;
    line-height: 1.8;
  }
  
  .hero-description strong {
    color: #fff;
    font-weight: 700;
  }
  
  .hero-mini-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 2rem;
    max-width: 900px;
  }
  
  .hero-mini-benefit {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-proof-bar {
    margin: 0 auto 2rem;
    max-width: 980px;
    border-radius: 20px;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
  }
  
  .hero-proof-item {
    text-align: left;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
  }
  
  .hero-proof-item:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(212,160,23,.3);
    transform: translateY(-3px);
  }
  
  .hero-proof-item strong {
    display: block;
    color: #fff;
    font-size: 0.96rem;
    margin-bottom: 0.3rem;
  }
  
  .hero-proof-item span {
    color: rgba(255,255,255,.62);
    font-size: 0.84rem;
    line-height: 1.5;
  }
  
  .hero-highlights {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .highlight {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.15rem;
    border-radius: 16px;
    text-align: left;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: default;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
  }
  
  .highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(212,160,23,.35);
    box-shadow: 0 12px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(212,160,23,.1);
  }
  
  .highlight-icon {
    font-size: 1.35rem;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--orange-dim);
    border: 1px solid rgba(212,160,23,.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .highlight strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
  }
  
  .highlight p {
    color: rgba(255,255,255,.55);
    font-size: 0.78rem;
    margin: 0.15rem 0 0;
    line-height: 1.45;
  }
  
  .hero-banner-wrap {
    position: relative;
    z-index: 1;
    padding: 0 0 3rem;
  }
  
  /* ══════════════════════════════════════════════════════════
     CARROSSEL — CORREÇÃO COMPLETA (imagem sem corte)
     ══════════════════════════════════════════════════════════ */
  .hero-carousel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 40px 80px rgba(0,0,0,.6), 0 0 80px rgba(212,160,23,.12);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
    background: #0a3620;
    width: 100%;
  }

  .hero-carousel:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 56px 100px rgba(0,0,0,.65), 0 0 100px rgba(212,160,23,.2);
  }

  .carousel-track {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #0a3620;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    will-change: opacity, transform;
  }

  .carousel-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .carousel-slide.leaving {
    position: absolute;
    opacity: 0;
    transform: scale(0.97);
  }

  .carousel-slide picture {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #0a3620;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
  }

  .carousel-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2.5rem 2.5rem;
    background: linear-gradient(to top, rgba(14,69,38,.95) 0%, rgba(14,69,38,.55) 40%, rgba(14,69,38,.1) 70%, transparent 100%), linear-gradient(to right, rgba(14,69,38,.3) 0%, transparent 60%);
    pointer-events: none;
  }

  .carousel-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 6px;
    margin-bottom: 0.7rem;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(212,160,23,.4);
  }

  .carousel-slide-overlay h3 {
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0 0 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
  }

  .carousel-slide-overlay p {
    color: rgba(255,255,255,.75);
    font-size: clamp(0.82rem, 1.5vw, 1rem);
    margin: 0;
    line-height: 1.55;
    max-width: 480px;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
  }

  /* ── Botões prev / next ─────────────────────────────────── */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(14,69,38,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255,255,255,.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    min-width: 48px;
    min-height: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
  }

  .carousel-btn svg { transition: transform 0.25s ease; }
  
  .carousel-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 6px 24px rgba(212,160,23,.5);
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-btn--prev:hover svg { transform: translateX(-2px); }
  .carousel-btn--next:hover svg { transform: translateX(2px); }
  .carousel-btn:active { transform: translateY(-50%) scale(0.95); }
  .carousel-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
  .carousel-btn--prev { left: 1.1rem; }
  .carousel-btn--next { right: 1.1rem; }

  /* ── Pontos ─────────────────────────────────────────────────── */
  .carousel-dots {
    position: absolute;
    bottom: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    background: rgba(14,69,38,.45);
    backdrop-filter: blur(12px);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    min-width: 6px;
    position: relative;
  }
  
  .carousel-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
  }
  
  .carousel-dot.active {
    background: var(--orange);
    width: 22px;
    box-shadow: 0 0 8px rgba(212,160,23,.6);
  }
  
  .carousel-dot:hover:not(.active) { background: rgba(255,255,255,.7); }
  .carousel-dot:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

  /* ── Contador ───────────────────────────────────────────────── */
  .carousel-counter {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    z-index: 10;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.6);
    background: rgba(14,69,38,.5);
    backdrop-filter: blur(12px);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
  }

  .carousel-counter .current { color: var(--white); }

  /* ── Barra de progresso ──────────────────────────────────── */
  .carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,.06);
    z-index: 10;
    overflow: hidden;
  }

  .carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), #F0D878);
    border-radius: 999px;
  }

  /* ══════════════════════════════════════════════════════════
     RESPONSIVO - CARROSSEL
     ══════════════════════════════════════════════════════════ */

  /* Tablet */
  @media (min-width: 768px) {
    .carousel-track {
      height: 400px;
    }
    .hero-carousel {
      border-radius: 32px;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .carousel-track {
      height: 460px;
    }
  }

  /* Desktop grande */
  @media (min-width: 1200px) {
    .carousel-track {
      height: 500px;
    }
  }

  /* Mobile */
  @media (max-width: 767px) {
    .hero-carousel {
      border-radius: 16px;
    }

    .carousel-track {
      height: 220px;
    }

    .carousel-slide img {
      object-fit: contain;
      object-position: center;
    }

    .carousel-btn {
      width: 36px;
      height: 36px;
      min-width: 36px;
      min-height: 36px;
    }

    .carousel-btn--prev { left: 0.5rem; }
    .carousel-btn--next { right: 0.5rem; }

    .carousel-slide-overlay {
      padding: 1rem 1.2rem 1.8rem;
    }

    .carousel-dots {
      bottom: 0.6rem;
      padding: 0.3rem 0.5rem;
      gap: 0.3rem;
    }

    .carousel-dot {
      width: 5px;
      height: 5px;
      min-width: 5px;
    }

    .carousel-dot.active {
      width: 16px;
    }
  }

  /* Mobile pequeno */
  @media (max-width: 480px) {
    .carousel-track {
      height: 180px;
    }

    .carousel-btn {
      display: none;
    }

    .carousel-counter {
      font-size: 0.6rem;
      padding: 0.2rem 0.5rem;
      top: 0.6rem;
      right: 0.8rem;
    }
  }

  /* Telas muito grandes */
  @media (min-width: 1600px) {
    .carousel-track {
      height: 560px;
    }
  }

  /* ══════════════════════════════════════════════════════════
     REDUCED MOTION
     ══════════════════════════════════════════════════════════ */
  @media (prefers-reduced-motion: reduce) {
    .carousel-slide {
      transition: none !important;
    }
    .carousel-progress-bar {
      transition: none !important;
    }
    .carousel-btn {
      transition: none !important;
    }
    .carousel-dot {
      transition: none !important;
    }
  }
  
  /* ══════════════════════════════════════════════════════════
     STATS
     ══════════════════════════════════════════════════════════ */
  .stats { padding: 3.5rem 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(14,69,38,.16); }
  .stats::before { display: none; }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
  }
  .stat-item {
    text-align: center;
    padding: 1.4rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  }
  .stat-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.08);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
  }
  .stat-icon-wrap {
    width: 52px; height: 52px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, rgba(212,160,23,.18), rgba(212,160,23,.18));
    border: 1px solid rgba(212,160,23,.25);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    box-shadow: 0 4px 16px rgba(212,160,23,.15);
  }
  .stat-display { display: block; line-height: 1; margin: 0.25rem 0 0.5rem; }
  .stat-number {
    display: inline;
    font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,.7) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
    letter-spacing: -0.03em;
  }
  .stat-suffix {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
  }
  .stat-item p { color: var(--muted); font-size: 0.85rem; margin-top: 0; font-weight: 500; }
  
  /* ══════════════════════════════════════════════════════════
     SECTIONS
     ══════════════════════════════════════════════════════════ */
  .section { padding: 5.5rem 0; position: relative; }
  .section::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  }
  .stats::before { display: none; }
  .section-header { margin-bottom: 3rem; text-align: center; }
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0.85rem;
    background: rgba(212,160,23,.1);
    border: 1px solid rgba(212,160,23,.25);
    border-radius: 999px;
  }
  .section-header h2, .contact-info h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.025em;
  }
  .section-header p, .contact-info > p {
    font-size: 1.02rem;
    color: rgba(255,255,255,.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* ══════════════════════════════════════════════════════════
     PLANS — cards completamente redesenhados
     ══════════════════════════════════════════════════════════ */
  .plans { background: transparent; }
  .plans-grid   { display: grid; gap: 1.4rem; }
  .plans-grid-4 { display: grid; gap: 1.4rem; }
  .plans-group  { margin-bottom: 2.5rem; }
  
  .plans-group-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.8rem; padding: 1rem 1.4rem;
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09); border-radius: 18px;
  }
  .plans-group-header--chip {
    flex-wrap: wrap; gap: 1.2rem;
    background: linear-gradient(135deg, rgba(212,160,23,.06), rgba(212,160,23,.04));
    border-color: rgba(212,160,23,.2);
  }
  .plans-group-icon-wrap {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--orange-dim); border: 1px solid rgba(212,160,23,.18);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    color: var(--orange);
  }
  .plans-group-chip-preview {
    position: relative; flex-shrink: 0; width: 90px; height: 56px;
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(212,160,23,.12);
  }
  .plans-group-chip-preview picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .plans-group-chip-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.18);
    transform-origin: center;
  }
  .chip-preview-badge {
    position: absolute; top: 4px; right: 5px;
    background: linear-gradient(135deg,#D4A017,#E8C547); color:#fff;
    font-size:0.6rem; font-weight:900; padding: 0.1rem 0.35rem;
    border-radius: 5px; letter-spacing:0.06em;
  }
  .plans-group-chip-tags {
    display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; margin-left: auto;
  }
  .plans-group-chip-tags span {
    font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    padding: 0.25rem 0.65rem; border-radius: 999px; white-space: nowrap;
  }
  .plans-group-title    { color: var(--white); font-size: 1.12rem; font-weight: 800; margin-bottom: 0.2rem; }
  .plans-group-subtitle { color: var(--muted); font-size: 0.86rem; }
  .plans-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,160,23,.28), transparent); margin: 1rem 0 3rem; }
  
  /* ── Plan Card — novo design ─────────────────────────────── */
  .plan-card {
    border-radius: 24px;
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
  }

  .plan-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .plan-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.1);
    box-shadow: 0 28px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(212,160,23,.15);
    border-color: rgba(212,160,23,.3);
  }
  
  .plan-card.featured {
    background: rgba(212,160,23,.08);
    border-color: rgba(212,160,23,.35);
    box-shadow: 0 20px 60px rgba(212,160,23,.15), 0 0 0 1px rgba(212,160,23,.2);
  }
  
  .plan-card.featured:hover {
    box-shadow: 0 32px 70px rgba(212,160,23,.25), 0 0 0 1px rgba(212,160,23,.4);
    border-color: var(--orange);
  }
  
  .plan-head {
    padding: 1.35rem 1.35rem 1rem;
    background: linear-gradient(160deg, rgba(212,160,23,.07) 0%, rgba(255,255,255,.02) 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: grid;
    gap: 0.4rem;
  }
  .plan-card.featured .plan-head {
    background: linear-gradient(160deg, rgba(212,160,23,.09) 0%, rgba(212,160,23,.03) 100%);
  }
  .plan-head h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
  }
  
  /* Corpo do card */
  .plan-body {
    padding: 1.05rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  
  /* Shimmer no hover */
  .plan-card::before {
    content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.03), transparent);
    transition: left 0.6s ease; pointer-events: none; z-index: 1;
  }
  .plan-card:hover::before { left: 120%; }
  
  /* Acento no topo */
  .plan-card-accent {
    height: 3px; width: 100%;
    flex-shrink: 0;
  }
  .plan-card-accent--blue   { background: linear-gradient(90deg, var(--blue), transparent); }
  .plan-card-accent--orange { background: linear-gradient(90deg, var(--orange), var(--orange-light)); box-shadow: 0 2px 16px rgba(212,160,23,.5); }
  .plan-card-accent--gold   { background: linear-gradient(90deg, var(--gold), #fbbf24); box-shadow: 0 2px 16px rgba(245,158,11,.4); }
  
  /* Badge "Mais escolhido" */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, rgba(212,160,23,.25), rgba(212,160,23,.12));
    border: 1px solid rgba(212,160,23,.4);
    color: var(--orange-light);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 7px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 12px rgba(212,160,23,.2);
  }
  
  /* Speed badge */
  .plan-speed-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.28rem 0.7rem; border-radius: 8px; font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.04em; background: linear-gradient(135deg, rgba(212,160,23,.2), rgba(212,160,23,.1));
    border: 1px solid rgba(212,160,23,.35);
    color: #F0D878; width: fit-content; margin-bottom: 0.3rem;
  }
  .plan-speed-badge--orange { background: linear-gradient(135deg, rgba(212,160,23,.2), rgba(212,160,23,.1)); border-color: rgba(212,160,23,.35); color: var(--orange-light); }
  .plan-speed-badge--gold   { background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(245,158,11,.1)); border-color: rgba(245,158,11,.35); color: var(--gold); }
  
  /* Preço */
  .price {
    font-size: clamp(1.75rem, 3.1vw, 2.35rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0.5rem 0;
  }
  .price--orange { color: var(--orange); }
  .price--gold   { color: var(--gold); }
  .price span    { font-size: 0.85rem; font-weight: 500; color: var(--muted); -webkit-text-fill-color: var(--muted); }
  
  /* Divisor preço vs features */
  .price-row {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  /* Speed bar */
  .speed-bar-wrap {
    height: 5px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden;
    position: relative;
  }
  .speed-bar-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  }
  .speed-bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--blue) 0%, #E8C547 100%); transition: width 1.2s cubic-bezier(.4,0,.2,1); }
  .speed-bar--orange { background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%); }
  .speed-bar--gold   { background: linear-gradient(90deg, #D4A017 0%, #F0D878 100%); }
  
  /* Features list */
  .plan-card ul {
    list-style: none; display: grid; gap: 0.6rem; flex: 1;
  }
  .plan-card ul li {
    color: rgba(255,255,255,.72);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.45;
  }
  .plan-card ul li::before {
    content: "";
    width: 18px; height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(212,160,23,.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ff5a00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  
  /* Área do botão */
  .plan-card-footer {
    padding: 0 1.35rem 1.35rem;
    margin-top: auto;
  }
  
  /* Notice */
  .notice {
    display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem;
    padding: 1.1rem 1.6rem; border-radius: 18px;
    background: rgba(212,160,23,.07); border: 1px solid rgba(212,160,23,.18);
    color: rgba(255,255,255,.68); font-size: 0.91rem;
  }
  .notice-icon { font-size: 1.4rem; flex-shrink: 0; }
  .notice p strong { color: var(--text); }
  
  /* ══════════════════════════════════════════════════════════
     CHIP VISUAL
     ══════════════════════════════════════════════════════════ */
  .chip-visual {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.6rem; padding: 0.5rem 0 0.2rem;
  }
  .chip-visual-frame {
    position: relative; width: 160px; height: 100px; flex-shrink: 0;
    border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 4px 16px rgba(0,0,0,.4), 0 0 0 1px rgba(212,160,23,.1);
    background: rgba(255,255,255,.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .chip-visual-frame picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .chip-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.18);
    transform-origin: center;
    display: block;
  }
  .plan-card:hover .chip-visual-frame { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 36px rgba(0,0,0,.55), 0 0 40px rgba(212,160,23,.18); }
  .chip-visual-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,160,23,.16), transparent 70%); }
  .chip-visual-glow--orange { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,160,23,.16), transparent 70%); }
  .chip-visual-glow--gold   { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,158,11,.16), transparent 70%); }
  .chip-visual-frame--orange { border-color: rgba(212,160,23,.3); box-shadow: 0 4px 16px rgba(212,160,23,.18), 0 0 0 1px rgba(212,160,23,.1); }
  .plan-card.featured:hover .chip-visual-frame--orange { box-shadow: 0 12px 36px rgba(212,160,23,.3), 0 0 50px rgba(212,160,23,.18); }
  .chip-visual-frame--gold  { border-color: rgba(245,158,11,.3); box-shadow: 0 4px 16px rgba(245,158,11,.16), 0 0 0 1px rgba(245,158,11,.1); }
  .plan-card:hover .chip-visual-frame--gold { box-shadow: 0 12px 36px rgba(245,158,11,.28), 0 0 50px rgba(245,158,11,.16); }
  .chip-visual-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
    color: rgba(255,255,255,.55); background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1); padding: 0.18rem 0.65rem; border-radius: 999px;
  }
  .chip-visual-label--orange { color: #F0D878; background: rgba(212,160,23,.1); border-color: rgba(212,160,23,.22); }
  .chip-visual-label--gold   { color: #ffd166; background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.22); }
  
  /* Triple chip stack */
  .chip-visual--triple { padding: 0.8rem 0 0.2rem; }
  .chip-visual-stack { position: relative; width: 180px; height: 114px; flex-shrink: 0; }
  .chip-stack-1, .chip-stack-2, .chip-stack-3 {
    position: absolute; width: 148px; height: 92px; left: 50%;
    border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.1);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
  }
  .chip-stack-1 picture, .chip-stack-2 picture, .chip-stack-3 picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .chip-stack-1 img, .chip-stack-2 img, .chip-stack-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.18);
    transform-origin: center;
    display: block;
  }
  .chip-stack-1 { transform: translateX(-50%) rotate(-7deg); opacity: 0.38; z-index: 1; top: 0; }
  .chip-stack-2 { transform: translateX(-50%) rotate(-3.5deg); opacity: 0.65; z-index: 2; top: 8px; }
  .chip-stack-3 { transform: translateX(-50%) rotate(0deg); opacity: 1; z-index: 3; top: 16px; }
  .plan-card:hover .chip-stack-1 { transform: translateX(calc(-50% - 24px)) rotate(-16deg) translateY(-6px); opacity: 0.52; }
  .plan-card:hover .chip-stack-2 { transform: translateX(-50%) rotate(-8deg) translateY(-6px); opacity: 0.78; }
  .plan-card:hover .chip-stack-3 { transform: translateX(calc(-50% + 24px)) rotate(0deg) translateY(-8px); }
  
  /* ══════════════════════════════════════════════════════════
     CTA MID
     ══════════════════════════════════════════════════════════ */
  .cta-mid { padding: 3rem 0; }
  .cta-mid::before { display: none; }
  .cta-mid-card {
    border-radius: 28px;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border-color: rgba(212,160,23,.22);
    background: linear-gradient(135deg, rgba(212,160,23,.12) 0%, rgba(212,160,23,.08) 50%, rgba(212,160,23,.06) 100%);
    border: 1px solid rgba(212,160,23,.25);
    box-shadow: 0 0 0 1px rgba(212,160,23,.08), 0 24px 60px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  }
  .cta-mid-orb {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,.18), transparent 65%);
    filter: blur(60px); right: -80px; top: -100px; pointer-events: none;
  }
  .cta-mid-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
  .cta-mid-text p  { color: rgba(255,255,255,.65); font-size: 0.97rem; }
  .cta-mid-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
  
  /* ══════════════════════════════════════════════════════════
     COVERAGE
     ══════════════════════════════════════════════════════════ */
  .coverage {
    background: rgba(14,69,38,.14);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .coverage-card {
    border-radius: var(--radius);
    padding: 2.4rem;
    max-width: 680px;
    margin: 0 auto;
    display: grid;
    gap: 1.4rem;
  }
  .coverage-form { display: flex; gap: 0.85rem; flex-wrap: wrap; }
  .coverage-input-wrap { position: relative; flex: 1; min-width: 200px; }
  .coverage-pin-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--orange); pointer-events: none; }
  #cep-input {
    width: 100%; padding: 0.9rem 1rem 0.9rem 3rem; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1); background: rgba(14,69,38,.26);
    color: var(--white); font-family: inherit; font-size: 1rem;
    font-weight: 600; letter-spacing: 0.04em; outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  #cep-input::placeholder { color: rgba(148,163,184,.5); font-weight: 400; letter-spacing: 0; }
  #cep-input:focus { border-color: rgba(212,160,23,.55); box-shadow: 0 0 0 3px rgba(212,160,23,.12); }
  #cep-input[aria-invalid="true"] { border-color: rgba(248,113,113,.5); box-shadow: 0 0 0 3px rgba(248,113,113,.1); }
  .coverage-result { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.4rem; border-radius: 16px; font-weight: 600; font-size: 0.95rem; animation: fadeIn 0.3s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  .coverage-result.success { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #4ade80; }
  .coverage-result.error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #f87171; }
  .coverage-result.loading { background: rgba(212,160,23,.08); border: 1px solid rgba(212,160,23,.2); color: #F0D878; }
  .coverage-result .result-icon { font-size: 1.3rem; flex-shrink: 0; }
  .coverage-result-action { margin-top: 0.6rem; display: inline-flex; align-items: center; gap: 0.4rem; color: #4ade80; font-size: 0.9rem; text-decoration: underline; text-underline-offset: 3px; }
  .coverage-address { padding: 0.9rem 1.2rem; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); font-size: 0.88rem; color: var(--muted); animation: fadeIn 0.3s ease; }
  .coverage-address strong { color: var(--white); display: block; margin-bottom: 0.25rem; }
  .spinner { width: 20px; height: 20px; flex-shrink: 0; border: 2.5px solid rgba(212,160,23,.3); border-top-color: #F0D878; border-radius: 50%; animation: spin 0.7s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
  
  /* ══════════════════════════════════════════════════════════
     TESTIMONIALS
     ══════════════════════════════════════════════════════════ */
  .testimonials { background: rgba(14,69,38,.12); }
  .testimonials-grid { display: grid; gap: 1.2rem; margin-bottom: 2rem; }
  .testimonial-card {
    border-radius: 22px;
    padding: 1.8rem;
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.5), transparent);
    border-radius: 2px 2px 0 0;
  }

  .testimonial-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(212,160,23,.15);
    border-color: rgba(212,160,23,.3);
  }
  
  .testimonial-quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--orange);
    opacity: 0.35;
    font-family: Georgia, serif;
    height: 36px;
    display: block;
    margin-top: -0.5rem;
  }
  
  .testimonial-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 0.1em; }
  .testimonial-card blockquote {
    font-size: 0.9rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; font-weight: 800; color: #fff; flex-shrink: 0;
  }
  .testimonial-avatar--a { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
  .testimonial-avatar--c { background: linear-gradient(135deg, #10b981, #059669); }
  .testimonial-avatar--f { background: linear-gradient(135deg, #ec4899, #be185d); }
  .testimonial-avatar--r { background: linear-gradient(135deg, #D4A017, #A88410); }
  .testimonial-avatar--m { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
  .testimonial-avatar--j { background: linear-gradient(135deg, #ef4444, #b91c1c); }
  .testimonial-author strong {
    display: block; color: rgba(255,255,255,.95);
    font-size: 0.88rem; font-weight: 700;
  }
  .testimonial-author span   { color: rgba(255,255,255,.45); font-size: 0.78rem; }
  
  .rating-summary {
    display: flex; align-items: center; gap: 2rem;
    padding: 1.8rem 2rem; border-radius: var(--radius);
    flex-wrap: wrap;
    margin-top: 1rem;
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
  }

  .rating-summary::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .rating-score { text-align: center; flex-shrink: 0; }
  .rating-number { display: block; font-size: 3.5rem; font-weight: 900; background: linear-gradient(135deg, var(--orange) 0%, #F0D878 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
  .rating-stars { color: #fbbf24; font-size: 1.2rem; margin: 0.3rem 0 0.25rem; letter-spacing: 0.08em; }
  .rating-score p { color: var(--muted); font-size: 0.82rem; }
  .rating-divider { width: 1px; height: 60px; background: var(--glass-border); flex-shrink: 0; }
  .rating-bars { flex: 1; display: grid; gap: 0.5rem; min-width: 160px; }
  .rating-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8rem; color: var(--muted); }
  .rating-row > span:first-child { width: 28px; text-align: right; flex-shrink: 0; }
  .rating-row > span:last-child  { width: 32px; text-align: right; flex-shrink: 0; }
  .rbar-track { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden; }
  .rbar-fill  { height: 100%; background: linear-gradient(90deg, var(--orange) 0%, #F0D878 100%); border-radius: 999px; transition: width 1.2s ease; }
  
  /* ── APP ─────────────────────────────────────────────────── */
  .app { background: rgba(14,69,38,.14); }
  .app-grid { display: grid; gap: 2.5rem; align-items: center; }
  .app-text h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin: 0.6rem 0 1rem; }
  .app-text > p { color: var(--muted); margin-bottom: 1.5rem; }
  .app-features { list-style: none; display: grid; gap: 0.65rem; margin-bottom: 1.8rem; }
  .app-features li { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,.72); font-size: 0.93rem; }
  .app-features svg { color: var(--orange); flex-shrink: 0; }
  .app-buttons { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
  
  .store-badge {
    width: 180px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    display: inline-flex;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .store-badge:hover {
    border-color: transparent;
    box-shadow: none;
    transform: translateY(-3px);
  }
  .store-badge img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .app-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .app-media picture {
    display: block;
    width: min(100%, 460px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
  }

  .app-media img {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center;
    background: #fff;
  }
  
  /* ── FAQ ─────────────────────────────────────────────────── */
  .faq { background: rgba(14,69,38,.12); }
  .faq-list { display: grid; gap: 0.75rem; }
  .faq-item {
    border-radius: 18px;
    overflow: hidden;
    transition: border-color var(--transition);
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  }

  .faq-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .faq-item:hover  { background: rgba(255,255,255,.09); }
  .faq-item[open]  {
    border-color: rgba(212,160,23,.4);
    background: rgba(212,160,23,.04);
    box-shadow: 0 8px 32px rgba(0,0,0,.2), 0 0 0 1px rgba(212,160,23,.08);
  }
  
  .faq-item summary {
    padding: 1.2rem 1.6rem; cursor: pointer; font-weight: 700; color: var(--white);
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
    transition: background 0.2s; user-select: none;
  }
  .faq-item summary:hover { background: rgba(255,255,255,.03); }
  .faq-item summary:focus-visible { background: rgba(212,160,23,.06); outline: none; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; color: var(--orange); background: var(--orange-dim); border: 1px solid rgba(212,160,23,.2); border-radius: 7px; padding: 0.15rem 0.5rem; flex-shrink: 0; }
  .faq-summary-text { flex: 1; font-size: 0.97rem; }
  .faq-item summary::after {
    content: ''; width: 22px; height: 22px; flex-shrink: 0;
    background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.22); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ff5a00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  }
  .faq-item[open] summary::after { transform: rotate(180deg); }
  .faq-body p {
    padding: 0 1.6rem 1.4rem;
    color: rgba(255,255,255,.72);
    font-size: 0.94rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: 0;
    line-height: 1.7;
  }
  
  /* ── LGPD ─────────────────────────────────────────────── */
  .lgpd { background: rgba(14,69,38,.12); }
  .lgpd-card {
    border-radius: var(--radius);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
  }

  .lgpd-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .lgpd-card h3 { color: rgba(255,255,255,.95); }
  .lgpd-list { list-style: none; display: grid; gap: 0.6rem; padding: 0; margin: 0; }
  .lgpd-list li { color: rgba(255,255,255,.72); }
  .lgpd-list li strong { color: rgba(255,255,255,.92); }
  .lgpd-note { margin: 0; color: rgba(255,255,255,.66); font-size: 0.95rem; }
  
  /* ── ABOUT ─────────────────────────────────────────────── */
  .about {
    background: transparent;
    position: relative;
    overflow: hidden;
  }
  
  .about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 30% 50%, rgba(212,160,23,.06) 0%, transparent 65%),
      radial-gradient(ellipse 50% 50% at 70% 50%, rgba(212,160,23,.04) 0%, transparent 65%);
    pointer-events: none;
  }
  
  .about-intro-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-intro-text strong { color: #fff; font-weight: 700; }
  
  .about-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.1rem;
    margin: 2.5rem 0;
  }

  .about-photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, border-color 0.35s;
    background: rgba(14,69,38,.8);
    aspect-ratio: 4/3;
  }

  .about-photo-card picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  }

  .about-photo-card:first-child {
    grid-column: auto;
    aspect-ratio: 4/3;
  }
  
  .about-photo-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 2px rgba(212,160,23,.3);
    border-color: rgba(212,160,23,.4);
  }
  
  .about-photo-card:hover img { transform: scale(1.06); }
  
  .about-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.1rem 0.9rem;
    background: linear-gradient(to top, rgba(14,31,61,.95) 0%, rgba(14,31,61,.4) 60%, transparent 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }
  
  .about-values {
    display: grid;
    gap: 1.2rem;
    margin-top: 0;
  }

  .about-value-card {
    padding: 1.8rem;
    border-radius: 22px;
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .about-value-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    border-color: rgba(212,160,23,.3);
  }
  
  .about-value-icon {
    font-size: 2.2rem;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,160,23,.15), rgba(212,160,23,.1));
    border: 1px solid rgba(212,160,23,.2);
    border-radius: 16px;
  }
  
  .about-value-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
  }
  
  .about-value-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin: 0;
  }
  
  /* ── CONTACT ─────────────────────────────────────────────── */
  .contact { background: rgba(14,69,38,.14); }
  .contact-grid { display: grid; gap: 2.5rem; align-items: start; }
  .contact-info { display: grid; gap: 1.4rem; }
  .contact-card {
    padding: 1.6rem;
    border-radius: var(--radius);
    display: grid;
    gap: 1rem;
    transition: border-color var(--transition), transform var(--transition);
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
  }

  .contact-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .contact-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
  .contact-card h3 { color: var(--white); font-weight: 700; }
  .contact-card p  { color: rgba(255,255,255,.72); font-size: 0.92rem; }
  .whatsapp-card { border-color: rgba(37,211,102,.32) !important; box-shadow: 0 0 32px rgba(37,211,102,.06); }
  .contact-detail { font-weight: 700; color: #6eb4ff; display: inline-flex; align-items: center; gap: 0.6rem; }
  .contact-detail a:hover { text-decoration: underline; }
  .zap-icon { color: #25d366; flex-shrink: 0; }
  .map-wrapper iframe { width: 100%; height: 225px; border: 0; border-radius: 16px; opacity: 0.88; filter: invert(1) hue-rotate(180deg); transition: opacity var(--transition); }
  .map-wrapper:hover iframe { opacity: 1; }
  
  .contact-form {
    padding: 2.2rem;
    border-radius: var(--radius);
    display: grid;
    gap: 1.2rem;
    background: radial-gradient(1200px 420px at 15% 0%, var(--card-glow-blue), transparent 55%),
                radial-gradient(900px 380px at 85% 10%, var(--card-glow-orange), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%),
                var(--surface-2);
    border: 1px solid var(--surface-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.38);
    position: relative;
    overflow: hidden;
  }

  .contact-form::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.9), rgba(212,160,23,.9), transparent);
    opacity: 0.75;
    pointer-events: none;
  }
  
  .contact-form h3 { color: var(--white); font-size: 1.32rem; font-weight: 700; }
  .field-group { display: grid; gap: 0.4rem; }
  .field-group label { color: var(--muted); font-size: 0.83rem; font-weight: 600; letter-spacing: 0.03em; }
  .contact-form input, .contact-form textarea {
    width: 100%; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(14,69,38,.26);
    color: var(--white); font-family: inherit; font-size: 0.95rem; outline: none; resize: vertical;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(148,163,184,.45); }
  .contact-form input:focus, .contact-form textarea:focus {
    border-color: rgba(212,160,23,.55);
    background: rgba(14,69,38,.32);
    box-shadow: 0 0 0 3px rgba(212,160,23,.1);
  }
  .contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: rgba(248,113,113,.5); }
  
  /* ══════════════════════════════════════════════════════════
     FOOTER
     ══════════════════════════════════════════════════════════ */
  .site-footer {
    padding: 4rem 0 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, transparent 0%, rgba(8,51,24,.8) 40%, rgba(6,40,22,.95) 100%);
  }
  .footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
  .footer-brand { display: grid; gap: 1rem; }
  .footer-brand .logo img { height: 42px; }
  .footer-brand p { color: rgba(148,163,184,.65); font-size: 0.88rem; line-height: 1.65; max-width: 260px; }
  .footer-links-col { display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col-title { color: var(--white); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
  .footer-links-col a { color: rgba(148,163,184,.7); font-size: 0.88rem; font-weight: 500; transition: color var(--transition), transform var(--transition); display: inline-block; }
  .footer-links-col a:hover { color: var(--white); transform: translateX(4px); }
  .footer-contact-link { display: inline-flex !important; align-items: center; gap: 0.55rem; color: rgba(148,163,184,.7) !important; }
  .footer-contact-link:hover { color: var(--white) !important; }
  .footer-social-col { display: flex; flex-direction: column; gap: 1rem; }
  .footer-socials    { display: flex; flex-direction: column; gap: 0.75rem; }
  .social-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.15rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.88rem; border: 1px solid transparent; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition); }
  .social-btn:hover { transform: translateY(-3px); }
  .social-instagram { background: linear-gradient(135deg, rgba(193,53,132,.13), rgba(253,186,73,.08)); border-color: rgba(193,53,132,.28); color: #f472b6; }
  .social-instagram:hover { background: linear-gradient(135deg, rgba(193,53,132,.22), rgba(253,186,73,.16)); border-color: rgba(193,53,132,.5); box-shadow: 0 8px 22px rgba(193,53,132,.18); }
  .social-whatsapp { background: rgba(37,211,102,.09); border-color: rgba(37,211,102,.28); color: #4ade80; }
  .social-whatsapp:hover { background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.5); box-shadow: 0 8px 22px rgba(37,211,102,.16); }
  .footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.06); text-align: center; }
  .footer-bottom p { color: rgba(148,163,184,.45); font-size: 0.8rem; }
  .footer-bottom-links { display: flex; gap: 1.8rem; }
  .footer-bottom-links a { color: rgba(148,163,184,.5); font-size: 0.8rem; font-weight: 500; transition: color var(--transition); }
  .footer-bottom-links a:hover { color: var(--white); }
  
  /* ── FAB WHATSAPP ────────────────────────────────────────── */
  .fab-whatsapp {
    position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 150;
    display: flex; align-items: center; gap: 0.6rem;
    background: #25d366; color: #fff; padding: 0.8rem 1.2rem 0.8rem 1rem; border-radius: 999px;
    box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.3);
    font-weight: 700; font-size: 0.9rem;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: fabIn 0.5s 1.5s both;
  }
  @keyframes fabIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .fab-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.3); }
  .fab-label { white-space: nowrap; }
  
  /* ── BACK TO TOP ────────────────────────────────────────── */
  .back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 1.8rem;
    z-index: 140;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(14,31,61,.9);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.3s, transform 0.3s, background 0.25s, border-color 0.25s;
    pointer-events: none;
  }
  
  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  
  .back-to-top:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 6px 24px rgba(212,160,23,.4);
  }
  
  /* ── ANIMATIONS ──────────────────────────────────────────── */
  [data-animate] { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
  [data-animate].visible { opacity: 1; transform: translateY(0); }
  [data-animate-delay="0"]   { transition-delay: 0s; }
  [data-animate-delay="100"] { transition-delay: 0.1s; }
  [data-animate-delay="200"] { transition-delay: 0.2s; }
  [data-animate-delay="300"] { transition-delay: 0.3s; }
  [data-animate-delay="400"] { transition-delay: 0.4s; }
  [data-animate-delay="500"] { transition-delay: 0.5s; }
  
  /* ── Print ─────────────────────────────────────────────── */
  @media print {
    .site-header, .fab-whatsapp, .hero-orbs, .hero-grid-bg { display: none; }
    body { background: white; color: black; }
    .glass { background: transparent; border: 1px solid #ddd; }
    .gradient-text { -webkit-text-fill-color: var(--orange); }
  }
  
  /* ══════════════════════════════════════════════════════════
     RESPONSIVE - AJUSTES GERAIS
     ══════════════════════════════════════════════════════════ */
  
  /* Performance: blur reduzido no mobile */
  @media (max-width: 768px) {
    .glass,
    .site-header.scrolled,
    .nav,
    .carousel-btn,
    .carousel-dots,
    .back-to-top,
    .cta-mid-card {
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
  }

  @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .glass,
    .site-header.scrolled,
    .nav,
    .carousel-btn,
    .carousel-dots,
    .back-to-top {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
  }

  @media (max-width: 599px) {
    .fab-label { display: none; }
    .fab-whatsapp { padding: 0.9rem; border-radius: 50%; }
    .coverage-form { flex-direction: column; }
    .coverage-form .btn { width: 100%; }
    .plans-group-chip-tags { display: none; }
    .cta-mid-card { padding: 2rem 1.5rem; }
    .contact-form { padding: 1.5rem; }
  
    .plan-head   { padding: 1.3rem 1.3rem 1rem; }
    .plan-body   { padding: 1rem 1.3rem; }
    .plan-card-footer { padding: 0 1.3rem 1.3rem; }
  
    .chip-visual-frame {
      width: 132px;
      height: 84px;
    }
    .chip-visual-stack { width: 150px; height: 98px; }
    .chip-stack-1, .chip-stack-2, .chip-stack-3 { width: 124px; height: 78px; }
    .chip-visual-label { font-size: 0.66rem; }

    .app-buttons {
      justify-content: center;
    }
    .store-badge {
      width: 160px;
    }
    .app-media picture {
      width: 100%;
      border-radius: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .cta-mid-card { flex-direction: column; align-items: flex-start; }
    .cta-mid-actions { width: 100%; flex-direction: column; }
    .cta-mid-actions .btn { width: 100%; justify-content: center; }
  }
  
  @media (min-width: 600px) {
    .plans-grid-4  { grid-template-columns: repeat(2, 1fr); }
    .stats-grid    { grid-template-columns: repeat(4, 1fr); }
    .footer-top    { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values  { grid-template-columns: repeat(3, 1fr); }
    .about-photos  { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .about-photo-card:first-child { grid-column: span 3; aspect-ratio: 21/8; }
  }
  
  @media (min-width: 768px) {
    .nav {
      position: static; display: flex !important; flex-direction: row;
      background: transparent; border: none; box-shadow: none;
      padding: 0; backdrop-filter: none; -webkit-backdrop-filter: none; animation: none; gap: 0.25rem;
    }
    .menu-toggle { display: none; }
    .btn-header  { display: inline-flex; }
    .hero        { padding-top: 9rem; }
    .plans-grid  { grid-template-columns: repeat(3, 1fr); }
    .app-grid    { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
    .faq-list    { max-width: 740px; margin: 0 auto; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .rating-summary { flex-wrap: nowrap; }
  }
  
  @media (min-width: 900px) {
    .about-photos {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.4rem;
    }
    .about-photo-card:first-child { grid-column: span 4; aspect-ratio: 21/7; }
  }
  
  @media (min-width: 1024px) {
    .logo img     { height: 68px; }
    .plans-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .footer-top   { grid-template-columns: 1.6fr 0.8fr 1fr 1.2fr; }
  }

  /* ══════════════════════════════════════════════════════════
     PLANOS — CARROSSEL HORIZONTAL NO CELULAR
     ══════════════════════════════════════════════════════════ */
  @media (max-width: 639px) {
    .plans-grid,
    .plans-grid-4 {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      gap: 1rem;
      padding-bottom: 1.2rem;
      margin-left:  calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      padding-left:  4%;
      padding-right: 4%;
    }
  
    .plans-grid::-webkit-scrollbar,
    .plans-grid-4::-webkit-scrollbar {
      display: none;
    }
  
    .plans-grid .plan-card,
    .plans-grid-4 .plan-card {
      flex: 0 0 82%;
      max-width: 82%;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }
  
    .plans-grid::after,
    .plans-grid-4::after {
      content: "Deslize para ver mais →";
      flex: 0 0 auto;
      align-self: center;
      white-space: nowrap;
      color: rgba(255,255,255,.35);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding-right: 1.2rem;
    }
  
    .plans-group {
      position: relative;
    }
  
    .plans-swipe-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      margin-top: 0.75rem;
    }
  
    .plans-swipe-hint span {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      transition: background 0.3s;
    }
  
    .plans-swipe-hint span.active {
      background: var(--orange);
      width: 18px;
      border-radius: 4px;
    }
  }
