* { font-family: 'Inter', sans-serif; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { overflow-x: hidden; max-width: 100vw; }

  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #9A7A2E;
    --dark: #0D1B2A;
    --dark-mid: #1A2C3D;
    --dark-light: #243448;
    --silver: #B8C5D4;
  }

  @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 fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.7); }
  }
  @keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes counter {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
  .animate-fadeInLeft { animation: fadeInLeft 0.8s ease-out forwards; }
  .animate-float { animation: float 3s ease-in-out infinite; }
  .animate-glow { animation: glow-pulse 2s ease-in-out infinite; }

  .gold-gradient { background: linear-gradient(135deg, #C9A84C, #E8C97A, #9A7A2E); }
  .gold-text { background: linear-gradient(135deg, #C9A84C, #E8C97A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .dark-bg { background: #0D1B2A; }
  .card-glass { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(201,168,76,0.2); }
  .card-glass:hover { border-color: rgba(201,168,76,0.6); transform: translateY(-4px); transition: all 0.3s ease; }

  .btn-gold {
    background: linear-gradient(135deg, #C9A84C, #E8C97A);
    color: #0D1B2A;
    font-weight: 700;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2.5s infinite;
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.5); }

  .hero-bg {
    background: linear-gradient(135deg, #0D1B2A 0%, #1A2C3D 40%, #0D1B2A 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .section-dark { background: #0D1B2A; }
  .section-mid { background: #1A2C3D; }
  .section-light { background: #243448; }

  .navbar-scroll { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

  .service-card {
    background: linear-gradient(145deg, #1A2C3D, #0D1B2A);
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .service-card:hover {
    border-color: rgba(201,168,76,0.7);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.15);
  }

  .depo-card {
    background: linear-gradient(145deg, #1A2C3D, #243448);
    border: 1px solid rgba(201,168,76,0.15);
    transition: all 0.3s ease;
  }
  .depo-card:hover { border-color: rgba(201,168,76,0.4); }

  .gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, #C9A84C, #E8C97A); border-radius: 2px; }
  .gold-line-full { height: 2px; background: linear-gradient(90deg, transparent, #C9A84C, transparent); }

  .faq-item { border: 1px solid rgba(201,168,76,0.15); transition: all 0.3s ease; }
  .faq-item:hover { border-color: rgba(201,168,76,0.4); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-answer.open { max-height: 300px; }

  .number-card {
    background: linear-gradient(145deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
  }

  .cta-section {
    background: linear-gradient(135deg, #1A2C3D 0%, #0D1B2A 50%, #1A2C3D 100%);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .star-gold { color: #C9A84C; }
  
  /* Geometric decorations */
  .geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    pointer-events: none;
  }

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

/* ── Formulário ── */
.form-field {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.form-field::placeholder { color: #4B5563; }
.form-field:focus {
    border-color: #C9A84C;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(201,168,76,0.25);
    border-radius: 12px;
    padding: 32px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.upload-area:hover {
    border-color: rgba(201,168,76,0.6);
    background: rgba(201,168,76,0.03);
}
.upload-area.dragover {
    border-color: #C9A84C;
    background: rgba(201,168,76,0.06);
}

/* ── Partículas flutuantes extras ── */
@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-8px) translateX(4px); }
  66% { transform: translateY(4px) translateX(-4px); }
}
.animate-float2 { animation: float2 5s ease-in-out infinite; }