/* =========================================================
   Bruno Mariotti · Mágico
   Identidade: roxo/magenta + dourado, tema mágica
   ========================================================= */

:root {
  /* Paleta */
  --bg:        #150726;   /* roxo bem escuro, fundo */
  --bg-2:      #1f0a38;   /* roxo escuro, seções alt */
  --card:      #2a1150;   /* cartão */
  --card-2:    #37176a;
  --purple:    #7b2ff7;
  --magenta:   #d321c9;
  --pink:      #ff3ea5;
  --gold:      #ffc531;
  --gold-2:    #ff9a1f;
  --gold-soft: #ffe08a;
  --text:      #f5ecff;
  --muted:     #c7b3e6;
  --white:     #ffffff;
  --wa:        #25d366;
  --wa-dark:   #1ebe5a;

  --grad-magic: linear-gradient(135deg, var(--purple), var(--magenta), var(--pink));
  --grad-gold:  linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-2));

  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 24px 60px rgba(6, 0, 20, .55);
  --shadow-gold: 0 14px 40px rgba(255, 154, 31, .35);
  --container:  1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(211, 33, 201, .28), transparent 60%),
    radial-gradient(1000px 600px at 0% 10%, rgba(123, 47, 247, .30), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name { font-family: 'Baloo 2', system-ui, sans-serif; line-height: 1.1; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= Botões ================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn .ico { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }

.btn-whatsapp { background: var(--wa); color: #06331a; box-shadow: 0 12px 30px rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { background: var(--wa-dark); box-shadow: 0 16px 38px rgba(37, 211, 102, .5); }

.btn-youtube { background: #ff0033; color: #fff; box-shadow: 0 12px 30px rgba(255, 0, 51, .3); }
.btn-youtube:hover { filter: brightness(1.08); }

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; box-shadow: 0 12px 30px rgba(220, 39, 67, .3);
}
.btn-instagram:hover { filter: brightness(1.08); }

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  border: 1.5px solid rgba(255, 197, 49, .5);
}
.btn-ghost:hover { background: rgba(255, 197, 49, .12); }

.btn-lg { font-size: 1.1rem; padding: 16px 28px; }

/* ================= Header ================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(21, 7, 38, .72);
  border-bottom: 1px solid rgba(255, 197, 49, .14);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(21, 7, 38, .95); box-shadow: 0 10px 30px rgba(0,0,0,.4); }

.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: .3px; }

.brand-logo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: center 28%;
  border: 2px solid rgba(255, 197, 49, .6);
  box-shadow: 0 4px 14px rgba(255, 154, 31, .35);
}

.brand-badge {
  display: grid; place-items: center;
  width: 38px; height: 42px;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1rem;
  color: #3a1d00;
  background: var(--grad-gold);
  clip-path: polygon(50% 0, 100% 22%, 100% 72%, 50% 100%, 0 72%, 0 22%);
  box-shadow: 0 4px 14px rgba(255, 154, 31, .5);
}
.brand-badge-lg { width: 84px; height: 94px; font-size: 2rem; }

.nav { display: flex; gap: 24px; }
.nav a { color: var(--muted); font-weight: 500; font-size: .96rem; transition: color .18s; }
.nav a:hover { color: var(--gold); }

.header-cta { padding: 10px 18px; font-size: .95rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--gold); transition: .25s; }

/* ================= Hero ================= */
.hero { position: relative; padding: 70px 0 80px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero-text { min-width: 0; }

.eyebrow {
  display: inline-block;
  font-weight: 600; font-size: .9rem; letter-spacing: .4px;
  color: var(--gold);
  background: rgba(255, 197, 49, .1);
  border: 1px solid rgba(255, 197, 49, .3);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}

.hero-title { font-size: clamp(2.3rem, 5.2vw, 3.8rem); font-weight: 800; margin-bottom: 18px; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 28px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { font-size: .92rem; color: var(--muted); }

.hero-image { position: relative; display: grid; place-items: center; }
.hero-image img {
  width: 100%; max-width: 400px;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%;
  border-radius: var(--radius);
  border: 4px solid rgba(255, 197, 49, .55);
  box-shadow: 0 0 0 10px rgba(123, 47, 247, .18), var(--shadow);
  position: relative; z-index: 2;
  animation: floaty 6s ease-in-out infinite;
}
.hero-glow {
  position: absolute; inset: -8%;
  background: radial-gradient(circle at center, rgba(255, 154, 31, .55), rgba(211, 33, 201, .25) 45%, transparent 68%);
  filter: blur(18px); z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse  { 0%, 100% { opacity: .8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* Estrelinhas */
.stars { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 12% 22%, #fff, transparent),
    radial-gradient(2px 2px at 28% 70%, var(--gold-soft), transparent),
    radial-gradient(1.5px 1.5px at 52% 15%, #fff, transparent),
    radial-gradient(2px 2px at 70% 45%, var(--pink), transparent),
    radial-gradient(1.5px 1.5px at 85% 25%, var(--gold), transparent),
    radial-gradient(2px 2px at 90% 78%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 40% 88%, var(--gold-soft), transparent),
    radial-gradient(2px 2px at 62% 82%, #fff, transparent);
  opacity: .8;
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .45; } to { opacity: .9; } }

/* ================= Stats ================= */
.stats { position: relative; z-index: 2; padding: 0 0 10px; margin-top: -10px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: linear-gradient(135deg, rgba(123, 47, 247, .35), rgba(211, 33, 201, .3));
  border: 1px solid rgba(255, 197, 49, .28);
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--gold);
}
.stat-label { display: block; font-size: .9rem; color: var(--muted); }

/* ================= Destaque no hero (título de campeão) ================= */
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px; max-width: 100%;
  background: linear-gradient(135deg, rgba(255, 197, 49, .12), rgba(255, 154, 31, .05));
  border: 1px solid rgba(255, 197, 49, .35);
  border-radius: 16px;
  padding: 7px 18px 7px 7px;
  margin-bottom: 18px;
}
.hero-badge-icon {
  flex-shrink: 0; font-size: 1.05rem;
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--grad-gold); border-radius: 50%;
  box-shadow: var(--shadow-gold);
}
.hero-badge-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.hero-badge-text strong {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: .95rem; color: var(--gold);
}
.hero-badge-text span { font-size: .78rem; color: var(--muted); }

/* ================= Seções ================= */
.section { padding: 80px 0; position: relative; }
.section-alt { background: var(--bg-2); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.kicker { color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; margin-bottom: 8px; }
.section-title { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 800; margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

/* ================= Cards (shows) ================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius);
  background: var(--grad-magic); opacity: 0; transition: opacity .22s ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { opacity: 1; }

.card-emoji {
  font-size: 2rem; width: 62px; height: 62px; display: grid; place-items: center;
  background: rgba(255, 197, 49, .12); border-radius: 16px; margin-bottom: 18px;
}
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 22px; flex-grow: 1; }
.card-link { color: var(--gold); font-weight: 700; font-family: 'Baloo 2', sans-serif; transition: gap .18s; }
.card-link:hover { color: var(--gold-soft); }

/* ================= Sobre ================= */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 197, 49, .3);
  box-shadow: var(--shadow);
}
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text .btn { margin-top: 10px; }

.awards { list-style: none; margin: 22px 0 6px; display: grid; gap: 14px; }
.awards li {
  position: relative; padding: 14px 16px 14px 18px;
  background: rgba(255, 255, 255, .04);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text); font-size: .98rem;
}
.award-age {
  display: inline-block; font-family: 'Baloo 2', sans-serif; font-weight: 800;
  color: var(--gold); margin-right: 8px;
}

/* ================= Venues ================= */
.venues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.venue {
  background: linear-gradient(135deg, var(--card), var(--card-2));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 22px 20px; font-weight: 600; font-size: 1.05rem;
  transition: transform .18s ease, border-color .18s ease;
}
.venue:hover { transform: translateY(-4px); border-color: rgba(255, 197, 49, .45); }

/* ================= Vídeos ================= */
.video-cta {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  max-width: 620px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(123, 47, 247, .32), rgba(211, 33, 201, .28));
  border: 1px solid rgba(255, 197, 49, .28);
  border-radius: var(--radius); padding: 38px 32px;
  box-shadow: var(--shadow);
}
.video-cta-badge { display: grid; place-items: center; }
.video-cta-avatar {
  width: 92px; height: 92px; border-radius: 50%;
  object-fit: cover; object-position: center;
  border: 3px solid rgba(255, 197, 49, .6);
  box-shadow: 0 8px 24px rgba(255, 154, 31, .4);
}
.video-cta-text h3 { font-size: 1.3rem; margin-bottom: 8px; }
.video-cta-text p { color: var(--muted); margin-bottom: 22px; }
.video-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ================= Steps ================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center; padding: 30px 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
}
.step-num {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 16px;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.5rem;
  color: #3a1d00; background: var(--grad-gold); border-radius: 50%;
  box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ================= CTA final ================= */
.cta-final { position: relative; overflow: hidden; text-align: center; padding: 90px 0;
  background: linear-gradient(135deg, rgba(123, 47, 247, .45), rgba(211, 33, 201, .4)); }
.cta-inner { position: relative; z-index: 2; max-width: 680px; }
.cta-final h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.cta-final p { color: var(--text); font-size: 1.15rem; margin-bottom: 28px; opacity: .95; }

.contact-alt { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.contact-alt a { color: var(--gold-soft); font-weight: 600; transition: color .18s; }
.contact-alt a:hover { color: var(--white); }

/* ================= Footer ================= */
.site-footer { background: #100320; border-top: 1px solid rgba(255, 197, 49, .14); padding-top: 44px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; font-family: 'Baloo 2', sans-serif; font-size: 1.15rem; }
.footer-brand span { font-size: .88rem; color: var(--muted); }

.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); font-size: .94rem; transition: color .18s; }
.footer-nav a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .06); color: var(--muted); transition: .2s;
}
.footer-social a:hover { background: var(--gold); color: #3a1d00; transform: translateY(-3px); }
.footer-social .ico { width: 20px; height: 20px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .07); padding: 18px 0; }
.footer-bottom span { font-size: .86rem; color: var(--muted); }

/* ================= WhatsApp flutuante ================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .55);
  animation: floaty 3.5s ease-in-out infinite;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .ico { width: 30px; height: 30px; }

/* ================= Responsivo ================= */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(21, 7, 38, .98);
    padding: 14px 22px 22px;
    border-bottom: 1px solid rgba(255, 197, 49, .2);
  }
  .nav.open a { padding: 10px 0; font-size: 1.05rem; }

  .hero-inner { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image img { max-width: 300px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards, .venues, .steps { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-media { order: 2; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .video-cta { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
