:root {
    --navy: #1a2744;
    --navy-dark: #0f1a30;
    --navy-mid: #243158;
    --beige: #c9b99a;
    --beige-light: #e8dfd0;
    --beige-lighter: #f5f0e8;
    --beige-dark: #a89070;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { overflow-x: hidden; font-family: 'Segoe UI', system-ui, sans-serif; background: #fff; }

  @media (max-width: 767px) {
    #hero {
      background-position: right center !important;
    }
    #hero .hero-mobile-overlay {
      display: block;
    }
  }
  @media (min-width: 768px) {
    #hero .hero-mobile-overlay {
      display: none;
    }
  }

  @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(201,185,154,0.4); }
    50% { box-shadow: 0 0 40px rgba(201,185,154,0.8); }
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
  }

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

  .btn-shimmer {
    position: relative;
    overflow: hidden;
  }
  .btn-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s infinite;
  }

  .btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
  }

  .navy-bg { background-color: var(--navy); }
  .navy-dark-bg { background-color: var(--navy-dark); }
  .beige-text { color: var(--beige); }
  .navy-text { color: var(--navy); }

  .hero-gradient {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  }

  .card-glass {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,185,154,0.2);
  }

  .service-card {
    transition: all 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26,39,68,0.15);
  }

  .diff-card {
    transition: all 0.3s ease;
  }
  .diff-card:hover {
    transform: translateY(-4px);
  }

  .depo-card {
    transition: all 0.3s ease;
  }
  .depo-card:hover {
    box-shadow: 0 16px 40px rgba(26,39,68,0.12);
  }

  .section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--beige), var(--navy));
    border-radius: 2px;
    margin: 0 auto 1.5rem;
  }

  .section-divider-left {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--beige), var(--navy));
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
  }

  .nav-link {
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 4px;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--beige);
    transition: width 0.3s;
  }
  .nav-link:hover { color: var(--beige); }
  .nav-link:hover::after { width: 100%; }

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

  .faq-chevron {
    transition: transform 0.3s ease;
  }
  .faq-question.active .faq-chevron {
    transform: rotate(180deg);
  }

  .star-icon {
    color: var(--beige);
  }

  .text-gradient {
    background: linear-gradient(135deg, var(--beige-light), var(--beige));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .accent-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--beige);
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 10px;
  }

/* ── 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;
    }
}