:root {
    --lilac: #c084fc;
    --lilac-dark: #a855f7;
    --lilac-light: #e9d5ff;
    --rose: #f472b6;
    --rose-dark: #ec4899;
    --rose-light: #fce7f3;
    --purple-deep: #6b21a8;
    --bg-soft: #fdf4ff;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { font-family: 'Lato', sans-serif; overflow-x: hidden; background: var(--bg-soft); }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @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(244,114,182,0.4), 0 0 40px rgba(192,132,252,0.2); }
    50% { box-shadow: 0 0 40px rgba(244,114,182,0.7), 0 0 80px rgba(192,132,252,0.4); }
  }
  @keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }
  @keyframes starFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-60px) rotate(360deg); opacity: 0; }
  }

  .font-playfair { font-family: 'Playfair Display', serif; }
  .gradient-text {
    background: linear-gradient(135deg, #c084fc, #f472b6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .btn-primary {
    background: linear-gradient(135deg, #c084fc, #f472b6);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-primary .shimmer-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
    animation: shimmer 2s infinite;
  }
  .btn-secondary {
    background: transparent;
    border: 2px solid var(--rose);
    color: var(--rose-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-secondary:hover {
    background: linear-gradient(135deg, #c084fc, #f472b6);
    color: white;
    border-color: transparent;
  }

  .hero-bg {
    background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 30%, #ede9fe 60%, #fdf4ff 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192,132,252,0.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244,114,182,0.25) 0%, transparent 70%);
    border-radius: 50%;
  }

  .card-glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(192,132,252,0.25);
    transition: all 0.3s ease;
  }
  .card-glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(192,132,252,0.2);
    border-color: rgba(244,114,182,0.4);
  }

  .section-dark {
    background: linear-gradient(135deg, #3b0764, #6b21a8, #4a044e);
    position: relative;
    overflow: hidden;
  }
  .section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .star-decoration {
    animation: sparkle 2s ease-in-out infinite;
  }
  .float-card {
    animation: float 4s ease-in-out infinite;
  }

  .navbar-link {
    color: #7c3aed;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
  }
  .navbar-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c084fc, #f472b6);
    transition: width 0.3s;
  }
  .navbar-link:hover::after { width: 100%; }
  .navbar-link:hover { color: #ec4899; }

  .testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(253,244,255,0.95));
    border: 1px solid rgba(192,132,252,0.3);
    transition: all 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(192,132,252,0.25);
  }

  .diferencial-icon {
    background: linear-gradient(135deg, #c084fc, #f472b6);
    animation: float 3s ease-in-out infinite;
  }

  .cta-section {
    background: linear-gradient(135deg, #581c87, #86198f, #9d174d);
    position: relative;
    overflow: hidden;
  }

  .footer-bg {
    background: linear-gradient(135deg, #2e1065, #4a044e);
  }

  /* Decorative stars */
  .deco-star {
    position: absolute;
    color: rgba(192,132,252,0.4);
    animation: sparkle 3s ease-in-out infinite;
  }

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