@import none;

  * { box-sizing: border-box; }
  body { font-family: 'Inter', sans-serif; background: #0a0a0a; overflow-x: hidden; }

  :root {
    --brand-blue: #4db8e8;
    --brand-blue-dark: #1a8fc0;
    --brand-blue-light: #7dd4f5;
    --bg-black: #0a0a0a;
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b8c1;
  }

  @media (min-width: 768px) {
    .beneficios-grid {
      grid-template-rows: repeat(3, 1fr);
    }
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(77, 184, 232, 0.4); }
    50% { box-shadow: 0 0 40px rgba(77, 184, 232, 0.8), 0 0 60px rgba(77, 184, 232, 0.3); }
  }

  .hero-bg {
    background: #060b14;
  }

  .hero-grid {
    background-image: radial-gradient(rgba(77, 184, 232, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
  }

  .btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4db8e8, #1a8fc0);
    color: white;
    font-weight: 700;
    border-radius: 12px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    animation: pulse-glow 3s ease-in-out infinite;
    transition: transform 0.2s ease;
  }

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

  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 2.5s infinite;
  }

  .btn-secondary {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid #4db8e8;
    color: #4db8e8;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover { background: rgba(77,184,232,0.1); transform: translateY(-2px); }

  .card-glass {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(77,184,232,0.15);
    border-radius: 16px;
  }

  .card-glass:hover {
    border-color: rgba(77,184,232,0.4);
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }

  .glow-blue {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(77,184,232,0.12);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }

  .stripe-accent {
    background: repeating-linear-gradient(
      135deg,
      rgba(77,184,232,0.08) 0px,
      rgba(77,184,232,0.08) 2px,
      transparent 2px,
      transparent 12px
    );
  }

  .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #4db8e8 50%, #7dd4f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-answer.open { max-height: 500px; }

  .step-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4db8e8, transparent);
    transform: translateY(-50%);
  }

  .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
  .animate-float { animation: float 4s ease-in-out infinite; }

  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77,184,232,0.4), transparent);
  }

  img { max-width: 100%; }

/* ── Botões: proteção global ── */
button,
input[type="button"],
input[type="submit"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
}

/* ── WhatsApp links: alinhamento ícone+texto em todas as resoluções ── */
a[href*="wa.me"],
a[href*="whatsapp.com"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
    text-decoration: none;
}


/* ── Navbar ≤ 767px: remove CTA/WhatsApp no mobile ── */
@media (max-width: 767px) {
    nav a[href*="wa.me"],
    nav a[href*="whatsapp.com"] {
        display: none !important;
    }
}

/* ── Galeria antes/depois: 1 coluna no mobile ── */
@media (max-width: 767px) {
    [data-section="antes-depois"] [style*="columns: 2"] {
        columns: 1 !important;
    }
}