@import none;

  :root {
    --azul: #3b646e;
    --azul-medio: #2d5060;
    --azul-claro: #4d7a87;
    --dourado: #c9a84c;
    --dourado-claro: #e2c06a;
    --dourado-escuro: #a8882e;
    --creme: #faf8f2;
    --branco: #ffffff;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--creme);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
  }

  @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-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero-bg {
    background: linear-gradient(135deg, #3b646e 0%, #2d5060 40%, #3a6070 70%, #243d47 100%);
  }

  .gold-text {
    background: linear-gradient(135deg, #c9a84c, #e2c06a, #a8882e, #c9a84c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
  }

  .btn-gold {
    background: linear-gradient(135deg, #c9a84c, #e2c06a, #a8882e);
    background-size: 200% auto;
    color: #3b646e;
    font-weight: 700;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    animation: pulse-gold 2.5s infinite;
    position: relative;
    overflow: hidden;
  }

  .btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
  }

  .btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
  }

  .btn-outline-gold {
    border: 2px solid var(--dourado);
    color: var(--dourado);
    background: transparent;
    font-weight: 600;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .btn-outline-gold:hover {
    background: var(--dourado);
    color: var(--azul);
    transform: translateY(-2px);
  }

  .card-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,0.25);
    transition: all 0.3s ease;
  }

  .card-glass:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .card-light {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(13,45,94,0.08);
  }

  .card-light:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13,45,94,0.15);
  }

  .divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    border-radius: 2px;
    margin: 0 auto;
  }

  .glow-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(59,100,110,0.3);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
  }

  .glow-gold {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(201,168,76,0.15);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
  }

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

  .fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  .nav-link {
    position: relative;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: var(--dourado-claro);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .star-gold {
    color: var(--dourado);
    fill: var(--dourado);
  }

  .section-dark {
    background: linear-gradient(135deg, #243d47, #3b646e);
  }

  .section-creme {
    background-color: var(--creme);
  }

  .section-white {
    background-color: #ffffff;
  }

  .badge-gold {
    background: linear-gradient(135deg, #c9a84c, #e2c06a);
    color: #3b646e;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .accordion-content.open {
    max-height: 500px;
  }

  .accordion-btn svg {
    transition: transform 0.3s ease;
  }

  .accordion-btn.open svg {
    transform: rotate(180deg);
  }

  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #3b646e; }
  ::-webkit-scrollbar-thumb { background: var(--dourado); border-radius: 3px; }

  .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  }

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