/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0f;
  --black2: #12121a;
  --purple: #9b30ff;
  --purple-dark: #6b00d4;
  --purple-glow: #bf6bff;
  --white: #ffffff;
  --gray: #b0b0c0;
  --gray2: #1e1e2e;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ===== NEON HELPERS ===== */
.neon { color: var(--purple); }
.glow {
  text-shadow:
    0 0 10px var(--purple),
    0 0 30px var(--purple-dark),
    0 0 60px var(--purple-dark);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px var(--purple), 0 0 30px var(--purple-dark); }
  50%       { text-shadow: 0 0 20px var(--purple-glow), 0 0 60px var(--purple), 0 0 100px var(--purple-dark); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray2);
  border-top: 1px solid var(--purple-dark);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1000;
  font-size: 0.85rem;
  color: var(--gray);
  flex-wrap: wrap;
}

.cookie-banner a { color: var(--purple); }
.cookie-banner a:hover { color: var(--purple-glow); }

.cookie-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.cookie-btn:hover { background: var(--purple-glow); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155, 48, 255, 0.2);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--purple);
  filter: drop-shadow(0 0 8px var(--purple));
}

.nav { display: flex; gap: 28px; font-size: 0.9rem; font-weight: 600; }
.nav a { color: var(--gray); }
.nav a:hover { color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(155, 48, 255, 0.18);
  top: -120px;
  left: -100px;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(107, 0, 212, 0.14);
  bottom: -100px;
  right: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(155, 48, 255, 0.15);
  border: 1px solid rgba(155, 48, 255, 0.4);
  color: var(--purple-glow);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: rgba(176, 176, 192, 0.6);
  margin-top: 14px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(155, 48, 255, 0.5), 0 4px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(155, 48, 255, 0.7), 0 8px 32px rgba(0,0,0,0.5);
  color: #fff;
}

.btn-cta svg { transition: transform var(--transition); }
.btn-cta:hover svg { transform: translateX(4px); }

/* ===== HERO SPLIT LAYOUT ===== */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}

.hero-text {
  flex: 1 1 480px;
}

.hero-img-wrap {
  flex: 0 0 420px;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(155, 48, 255, 0.3);
  box-shadow: 0 0 40px rgba(155, 48, 255, 0.25);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hero-img-wrap:hover .hero-img {
  transform: scale(1.03);
}

/* ===== CTA BANNER IMAGE ===== */
.cta-banner-img {
  max-width: 820px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(155, 48, 255, 0.3);
  box-shadow: 0 0 50px rgba(155, 48, 255, 0.2);
}

.cta-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BENEFÍCIOS ===== */
.beneficios {
  padding: 80px 0;
  background: var(--black2);
  border-top: 1px solid rgba(155, 48, 255, 0.1);
  border-bottom: 1px solid rgba(155, 48, 255, 0.1);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 52px;
  font-size: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(155, 48, 255, 0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(155, 48, 255, 0.2);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(155, 48, 255, 0.6));
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155,48,255,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black2);
  border-top: 1px solid rgba(155, 48, 255, 0.15);
  padding: 40px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.88rem;
}

.footer-nav a { color: var(--gray); font-weight: 500; }
.footer-nav a:hover { color: var(--purple-glow); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(176, 176, 192, 0.5);
  max-width: 600px;
}

/* ===== PAGE INNER (para subpáginas) ===== */
.page-content {
  padding: 80px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--white);
}

.page-content .page-date {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 40px;
  display: block;
}

.page-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-glow);
  margin: 36px 0 10px;
}

.page-content p, .page-content li {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.page-content ul { padding-left: 20px; }
.page-content a { color: var(--purple-glow); }
.page-content a:hover { color: var(--white); }

/* ===== FORM (contato) ===== */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--gray2);
  border: 1px solid rgba(155,48,255,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,48,255,0.15);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 860px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  .hero-img-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* Mobile */
@media (max-width: 640px) {

  /* Header */
  .header { padding: 12px 0; }
  .logo { font-size: 1.2rem; }
  .logo-icon { font-size: 1.3rem; }
  .nav { gap: 14px; font-size: 0.78rem; }

  /* Hero */
  .hero { padding: 52px 0 48px; }
  .hero-split { gap: 28px; }
  .hero-badge { font-size: 0.75rem; padding: 5px 14px; margin-bottom: 20px; }
  .hero-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .hero-disclaimer { font-size: 0.72rem; }

  /* Orbs menores no mobile para não pesar */
  .orb1 { width: 260px; height: 260px; top: -60px; left: -60px; }
  .orb2 { width: 220px; height: 220px; bottom: -60px; right: -40px; }

  /* Botão CTA */
  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 1rem;
    border-radius: 14px;
  }

  /* Benefícios */
  .beneficios { padding: 52px 0; }
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: 0.9rem; margin-bottom: 32px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 28px 20px; }
  .card-icon { font-size: 2rem; margin-bottom: 12px; }
  .card h3 { font-size: 1.05rem; }
  .card p { font-size: 0.88rem; }

  /* CTA Section */
  .cta-section { padding: 52px 0; }
  .cta-inner h2 { font-size: 1.5rem; }
  .cta-inner p { font-size: 0.92rem; margin-bottom: 28px; }
  .cta-banner-img { border-radius: 10px; margin-bottom: 28px; }

  /* Footer */
  .footer { padding: 32px 0 80px; }
  .footer-nav { gap: 14px; font-size: 0.82rem; }
  .footer-copy { font-size: 0.72rem; }

  /* Cookie */
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    font-size: 0.8rem;
  }
  .cookie-btn { width: 100%; text-align: center; padding: 10px; }

  /* Subpáginas */
  .page-content { padding: 48px 0 72px; }
  .page-content h1 { font-size: 1.6rem; }
  .page-content h2 { font-size: 1.05rem; margin-top: 28px; }
  .page-content p, .page-content li { font-size: 0.88rem; }

  /* Formulário contato */
  .form-group input,
  .form-group textarea { font-size: 1rem; padding: 13px 14px; }
}
