/* =====================================================
   SOMOS+ VIRADA DE JOGO 2026
   CSS Principal — Layout Refinado
   ===================================================== */

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

:root {
  --blue:         #0b3d91;
  --blue-dark:    #07285f;
  --blue-mid:     #1455b8;
  --blue-light:   #e8effd;
  --green:        #00a36c;
  --green-dark:   #007a52;
  --green-light:  #e4f5ee;
  --gold:         #d8a64c;
  --gold-dark:    #b8862c;
  --gold-light:   #fdf5e4;
  --orange:       #f39a12;
  --orange-dark:  #d07d05;
  --orange-light: #fff3dc;
  --red:          #df3a32;
  --red-light:    #fdecea;
  --silver:       #8fa0b0;
  --bronze:       #b5722a;
  --bg:           #f2f5f9;
  --surface:      #ffffff;
  --text:         #1a2332;
  --text-2:       #3d4f63;
  --muted:        #6b7c8f;
  --border:       #dce4ef;
  --border-light: #edf1f7;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --shadow-sm:    0 2px 8px rgba(11,61,145,0.06);
  --shadow:       0 4px 20px rgba(11,61,145,0.10);
  --shadow-lg:    0 12px 40px rgba(11,61,145,0.14);
  --shadow-xl:    0 20px 60px rgba(11,61,145,0.18);
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
p { color: var(--text-2); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =====================================================
   CARD BASE
   ===================================================== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
}

/* =====================================================
   BOTÕES
   ===================================================== */
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-wpp i { font-size: 20px; }
.btn-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  background: linear-gradient(140deg, var(--blue-dark) 0%, #0e47a8 50%, #1560c0 100%);
  padding: 70px 0 0;
  overflow: hidden;
  color: #fff;
}

/* ruído de textura sutil */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.3;
}

/* shapes de fundo */
.hero-shapes .hs {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hs-1 { width:480px; height:480px; background: var(--orange); opacity:.06; top:-160px; right:-100px; }
.hs-2 { width:320px; height:320px; background: var(--gold);   opacity:.07; bottom:40px; left:-80px; }
.hs-3 { width:200px; height:200px; background: var(--green);  opacity:.06; top:80px; left:40%; }
.hs-4 { width:120px; height:120px; background: #fff;          opacity:.04; bottom:80px; right:20%; }

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Brands */
.hero-brands {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.brand-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* Badge temporada */
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243,154,18,0.18);
  border: 1px solid rgba(243,154,18,0.4);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.fa-spin-slow { animation: spin 8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Título hero */
.hero-title-block { margin-bottom: 36px; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.title-somos {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.title-plus { color: var(--orange); }
.title-virada {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.title-year {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* KPIs hero */
.hero-kpis {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 4px;
  gap: 0;
  margin-bottom: 28px;
}
.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 26px;
  gap: 2px;
}
.kpi-icon {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.kpi-icon.gold   { color: var(--gold); }
.kpi-icon.orange { color: var(--orange); }
.kpi-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.kpi-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.kpi-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Nav hero */
.hero-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0;
  padding-bottom: 8px;
}
.hero-nav a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: all var(--transition);
}
.hero-nav a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Wave */
.hero-wave { margin-top: 32px; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* =====================================================
   IDENTITY BAR
   ===================================================== */
.identity-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.identity-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.identity-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.identity-text {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
}
.identity-swatches {
  display: flex;
  gap: 8px;
}
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.swatch-blue   { background: var(--blue); }
.swatch-gold   { background: var(--gold); }
.swatch-orange { background: var(--orange); }
.swatch-green  { background: var(--green); }

/* =====================================================
   MAIN WRAP & SECTIONS
   ===================================================== */
.main-wrap { padding: 52px 0 20px; }

.section { margin-bottom: 72px; }

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.sec-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.sec-icon.blue   { background: var(--blue-light); color: var(--blue); }
.sec-icon.green  { background: var(--green-light); color: var(--green); }
.sec-icon.gold   { background: var(--gold-light); color: var(--gold); }
.sec-icon.orange { background: var(--orange-light); color: var(--orange); }

.sec-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}

.section-lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* =====================================================
   CONCEITO
   ===================================================== */
.concept-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: start;
}
.concept-main {
  padding: 32px;
}
.concept-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.concept-main h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}
.concept-main p {
  margin-bottom: 12px;
  line-height: 1.7;
}
.concept-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange-light), #fff8ec);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-dark);
}
.concept-highlight i { color: var(--orange); font-size: 18px; }

.concept-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.concept-pillar {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 4px;
}
.pillar-icon.gold   { background: var(--gold-light); color: var(--gold-dark); }
.pillar-icon.orange { background: var(--orange-light); color: var(--orange-dark); }
.concept-pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.concept-pillar p { font-size: 13px; line-height: 1.6; }

/* =====================================================
   MISSÕES COMERCIAIS
   ===================================================== */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mission-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mission-ibratin { border-top-color: var(--blue); }
.mission-kresil  { border-top-color: var(--green); }
.mission-dupla   { border-top-color: var(--gold); }
.mission-bonus   { border-top-color: var(--orange); }

.mission-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
  width: fit-content;
}
.kresil-tag { color: var(--green); background: var(--green-light); }
.dupla-tag  { color: var(--gold-dark); background: var(--gold-light); }
.bonus-tag  { color: var(--orange-dark); background: var(--orange-light); }

.mission-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: 0.1em;
}

.mission-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.mission-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.mission-meta {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.mmeta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-2);
}
.mmeta-item i { color: var(--muted); font-size: 12px; }
.mmeta-item strong { font-weight: 700; color: var(--text); }

.mission-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.mission-dif {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.dif-facil  { background: var(--green-light); color: var(--green); }
.dif-medio  { background: var(--orange-light); color: var(--orange-dark); }
.dif-dificil{ background: var(--red-light); color: var(--red); }
.mission-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* =====================================================
   ÁLBUM DE FIGURINHAS
   ===================================================== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.album-group { overflow: hidden; }

.album-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: #fff;
  margin: -1px -1px 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blue-header  { background: linear-gradient(135deg, var(--blue),  var(--blue-mid)); }
.green-header { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.gold-header  { background: linear-gradient(135deg, var(--gold),  var(--gold-dark)); }

.album-group-header i { font-size: 18px; opacity: 0.9; }
.album-group-header h3 { font-size: 14px; font-weight: 700; flex: 1; }
.album-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 3px 9px;
  border-radius: 50px;
}

.album-stickers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}
.sticker {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 2px dashed var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
  transition: all var(--transition);
  cursor: pointer;
  padding: 8px 4px;
}
.sticker:hover { border-style: solid; transform: scale(1.04); }
.sticker i { font-size: 20px; }
.sticker span { font-size: 9px; font-weight: 600; text-align: center; line-height: 1.2; }

.sticker.filled {
  border: 2px solid var(--green);
  background: linear-gradient(135deg, var(--green-light), #fff);
  color: var(--green);
}
.sticker.filled i { color: var(--green); }

.special-sticker {
  border: 2px dashed var(--gold) !important;
  background: var(--gold-light) !important;
  color: var(--gold-dark) !important;
}
.special-sticker i { color: var(--gold) !important; }

.album-progress {
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.alb-bar {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.alb-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1.2s ease;
}
.blue-fill   { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.green-fill  { background: linear-gradient(90deg, var(--green), #2dbe8a); }
.gold-fill   { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.orange-fill { background: linear-gradient(90deg, var(--orange), #f5b236); }

.album-progress span { font-size: 11px; color: var(--muted); font-weight: 500; }

.album-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.album-legend span { display: flex; align-items: center; gap: 7px; }
.leg-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.filled-dot  { background: var(--green); }
.empty-dot   { background: var(--border); border: 2px dashed var(--muted); background: transparent; }
.special-dot { background: var(--gold); }

/* =====================================================
   MECÂNICA
   ===================================================== */
.mechanics-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.steps-flow { display: flex; flex-direction: column; }

.flow-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.flow-step:last-child { border-bottom: none; }

.flow-num {
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-light), #d8e7ff);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.flow-step:hover .flow-num {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  transform: scale(1.06);
}

.flow-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}
.flow-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.flow-arrow {
  text-align: center;
  color: var(--border);
  font-size: 14px;
  padding: 4px 0;
}

.mechanics-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mtable-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.mtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.mtable th {
  padding: 10px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg);
}
.mtable td {
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
  vertical-align: middle;
}
.mtable tbody tr:hover { background: #fafbfc; }
.mtable .bonus-row td { background: var(--orange-light); }

.brand-tag-sm {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.blue-tag   { background: var(--blue-light); color: var(--blue); }
.green-tag  { background: var(--green-light); color: var(--green); }
.gold-tag   { background: var(--gold-light); color: var(--gold-dark); }
.orange-tag { background: var(--orange-light); color: var(--orange-dark); }

.fig-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.dif-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}
.dif-pill.facil  { background: var(--green-light); color: var(--green); }
.dif-pill.medio  { background: var(--orange-light); color: var(--orange-dark); }
.dif-pill.dificil{ background: var(--red-light); color: var(--red); }

.deadline-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}
.deadline-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.deadline-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.deadline-date {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}
.deadline-body p { font-size: 12px; }

/* =====================================================
   PREMIAÇÃO
   ===================================================== */
.prizes-sub-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 16px;
}
.prizes-sub-title i { color: var(--muted); }

/* Prêmios por grupo */
.group-prizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.gprize-card {
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gprize-destaque {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(216,166,76,0.18);
}
.gprize-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.blue-bg   { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); }
.green-bg  { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.gold-bg   { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.orange-bg { background: linear-gradient(135deg, var(--orange), var(--gold)); }

.gprize-card h4 { font-size: 14px; font-weight: 700; color: var(--text); }
.gprize-brand {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gprize-reward {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  padding: 7px 12px;
  border-radius: 50px;
  margin-top: 4px;
  text-align: center;
}
.gprize-reward i { color: var(--green); font-size: 11px; }
.special-reward { background: var(--gold-light); color: var(--gold-dark); }
.special-reward i { color: var(--gold); }

/* Pódio ranking */
.podium-row {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 20px;
}

.podium-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px 22px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.podium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.p1 {
  background: linear-gradient(160deg, #fffcf0 0%, #fffdf8 100%);
  border-color: rgba(216,166,76,0.35);
  box-shadow: 0 6px 28px rgba(216,166,76,0.18);
  padding-top: 40px;
}
.p2 {
  background: linear-gradient(160deg, #f8f9fb 0%, #fff 100%);
}
.p3 {
  background: linear-gradient(160deg, #fdf7f2 0%, #fff 100%);
}

.crown {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(216,166,76,0.5));
  animation: floatCrown 3s ease-in-out infinite;
}
@keyframes floatCrown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-5px); }
}

.p-medal { font-size: 24px; margin-bottom: 8px; }
.p-medal.gold   { color: var(--gold); }
.p-medal.silver { color: var(--silver); }
.p-medal.bronze { color: var(--bronze); }

.p-pos {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.podium-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.p-region {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.4;
}
.p-prize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-2);
  padding: 9px 14px;
  border-radius: 50px;
}
.p-prize i { color: var(--green); }
.p-prize-gold {
  background: linear-gradient(135deg, var(--gold-light), #fff9e0);
  color: var(--gold-dark);
  border: 1px solid rgba(216,166,76,0.25);
}
.p-prize-gold i { color: var(--gold); }

/* Prêmio especial */
.special-prize {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  margin-top: 6px;
  background: linear-gradient(135deg, #fff8ec, #fffef8);
  border-color: rgba(243,154,18,0.3);
  border-left: 4px solid var(--orange);
}
.sp-left { flex-shrink: 0; }
.sp-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(243,154,18,0.35);
}
.sp-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.sp-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.sp-body p { font-size: 14px; line-height: 1.7; }

/* =====================================================
   REGULAMENTO
   ===================================================== */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rules-block { padding: 24px; }

.rules-block-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.rules-block-title i { color: var(--blue); }

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.rules-list li i {
  color: var(--blue);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.rules-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rules-timeline li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.rules-timeline li:last-child { border-bottom: none; }
.tl-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  min-width: 46px;
}
.tl-event { color: var(--text-2); }
.tl-final .tl-date { color: var(--orange); }
.tl-final .tl-event { font-weight: 600; color: var(--text); }

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 48px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-wpp-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.8);
}
.cta-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.cta-text p { font-size: 14px; color: rgba(255,255,255,0.75); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 52px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.f-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.f-brand span { color: var(--orange); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-brands-tags {
  display: flex;
  gap: 8px;
}
.footer-brands-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 5px 12px;
  border-radius: 50px;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
}
.footer-contact i { color: rgba(255,255,255,0.35); width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =====================================================
   BOTÃO FLUTUANTE WHATSAPP
   ===================================================== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  z-index: 999;
  animation: pulseWpp 2.8s ease-in-out infinite;
}
.wpp-float i { font-size: 22px; }
.wpp-float-label { font-size: 13px; }
.wpp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
@keyframes pulseWpp {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 0 8px rgba(37,211,102,0.1), 0 6px 24px rgba(37,211,102,0.4); }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .concept-grid     { grid-template-columns: 1fr; }
  .missions-grid    { grid-template-columns: 1fr 1fr; }
  .album-grid       { grid-template-columns: 1fr; }
  .mechanics-layout { grid-template-columns: 1fr; }
  .group-prizes     { grid-template-columns: 1fr 1fr; }
  .rules-grid       { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 0; }
  .missions-grid    { grid-template-columns: 1fr; }
  .group-prizes     { grid-template-columns: 1fr 1fr; }
  .podium-row       { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 24px; }
  .cta-inner        { flex-direction: column; align-items: flex-start; }
  .hero-kpis        { flex-direction: column; gap: 2px; }
  .kpi-sep          { width: 80%; height: 1px; }
  .section          { margin-bottom: 48px; }
  .sec-title        { font-size: 20px; }
  .wpp-float-label  { display: none; }
  .wpp-float        { padding: 14px; border-radius: 50%; }
}
