/*
Theme Name: Torcida Gourmet Brasil 2026
Theme URI: https://torcida-gourmet-magic.lovable.app
Author: Torcida Gourmet
Author URI: https://torcida-gourmet-magic.lovable.app
Description: Tema WordPress de alta conversão para a landing page do e-book "Torcida Gourmet Brasil 2026". Design "stadium dark" com as cores do Brasil, copywriting de resposta direta (AIDA/PAS), CTA fixo no mobile e integração com o checkout da Kiwify.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: torcida-gourmet
Tags: landing-page, one-page, ecommerce, dark, custom-colors
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --brasil-green: #00A859;
  --brasil-green-dark: #007a40;
  --brasil-yellow: #FFCC29;
  --brasil-blue: #002776;

  --bg: #0b1224;
  --bg-2: #131a30;
  --card: #1a2240;
  --border: #2a3358;
  --text: #f5f7fb;
  --text-muted: #b8c0d6;

  --cta: #00A859;
  --cta-hover: #00c068;
  --cta-text: #ffffff;

  --gradient-hero: radial-gradient(120% 80% at 50% 0%, #1a2466 0%, #0b1224 60%);
  --gradient-cta: linear-gradient(180deg, #00c068 0%, #008c4a 100%);
  --gradient-gold: linear-gradient(135deg, #FFD75A 0%, #E0A82E 100%);
  --gradient-flag: linear-gradient(135deg, var(--brasil-green) 0%, var(--brasil-yellow) 100%);

  --shadow-cta: 0 12px 30px -8px rgba(0, 168, 89, 0.55), inset 0 0 0 1px rgba(255,255,255,0.08);
  --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.55);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(60% 40% at 50% 0%, rgba(0, 39, 118, 0.55), transparent 70%),
    radial-gradient(40% 30% at 80% 60%, rgba(0, 168, 89, 0.18), transparent 70%),
    radial-gradient(40% 30% at 20% 80%, rgba(255, 204, 41, 0.10), transparent 70%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Anton', 'Bebas Neue', Impact, system-ui, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ============================================
   FLAG STRIPE
   ============================================ */
.flag-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--brasil-green) 0 33.33%,
    var(--brasil-yellow) 33.33% 66.66%,
    var(--brasil-blue) 66.66% 100%
  );
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 18, 36, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.site-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-logo span { color: var(--brasil-yellow); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cta); color: var(--cta-text);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  transition: transform .2s, filter .2s;
}
.header-cta:hover { transform: scale(1.04); filter: brightness(1.1); }

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; max-width: 560px;
  padding: 20px 28px;
  background: var(--gradient-cta); color: var(--cta-text);
  border: none; border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition: transform .25s, filter .25s;
  animation: pulseCta 2.2s ease-out infinite;
}
.cta-button:hover { transform: scale(1.03); filter: brightness(1.1); }
.cta-button:active { transform: scale(.99); }
.cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-trust {
  font-size: 13px; color: var(--text-muted);
  display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center;
}
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(0,168,89,.55), 0 0 0 0 rgba(0,168,89,.6); }
  50%      { box-shadow: 0 12px 30px -8px rgba(0,168,89,.65), 0 0 0 14px rgba(0,168,89,0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--gradient-hero);
  padding: 70px 0 80px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 204, 41, 0.15);
  color: var(--brasil-yellow);
  border: 1px solid rgba(255, 204, 41, 0.4);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 18px;
}
.hero h1 .hl {
  background: var(--gradient-flag);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 19px; color: var(--text-muted); margin-bottom: 26px; max-width: 560px; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.hero-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px;
}
.hero-bullets li::before {
  content: "✅"; flex-shrink: 0;
}
.hero-mock {
  display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 420px;
}
.hero-mock .ebook {
  max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  text-align: center; margin-bottom: 16px;
}
.section-subtitle {
  text-align: center; color: var(--text-muted);
  font-size: 17px; max-width: 720px; margin: 0 auto 50px;
}

/* Problem (PAS) */
.problem { background: var(--bg-2); }
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.problem-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.problem-card .icon { font-size: 32px; margin-bottom: 10px; }
.problem-card h3 { font-size: 20px; color: var(--brasil-yellow); }

/* Recipes */
.recipes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.recipe-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.recipe-card:hover { transform: translateY(-6px); }
.recipe-card .thumb {
  aspect-ratio: 16/10; background: #000;
}
.recipe-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.recipe-card .body { padding: 22px; }
.recipe-card h3 { font-size: 22px; color: var(--brasil-green); margin-bottom: 8px; }
.recipe-card .tag {
  display: inline-block;
  background: rgba(0, 168, 89, 0.15); color: var(--brasil-green);
  border: 1px solid rgba(0, 168, 89, 0.35);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* What's inside */
.inside { background: var(--bg-2); }
.inside-list {
  list-style: none; padding: 0;
  max-width: 800px; margin: 0 auto;
  display: grid; gap: 14px;
}
.inside-list li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
}
.inside-list li::before {
  content: "⚽"; font-size: 22px; flex-shrink: 0;
}

/* Offer */
.offer {
  background: var(--gradient-hero);
  text-align: center;
}
.offer-card {
  max-width: 640px; margin: 0 auto;
  background: var(--card); border: 2px solid var(--brasil-yellow);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: 0 0 80px rgba(255, 204, 41, 0.18);
}
.offer-card .badge {
  display: inline-block;
  background: var(--gradient-gold); color: #1a1a1a;
  padding: 6px 16px; border-radius: 999px;
  font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.price-old {
  color: var(--text-muted); text-decoration: line-through;
  font-size: 20px;
}
.price-new {
  font-family: 'Anton', sans-serif;
  font-size: 72px; line-height: 1; color: var(--brasil-green);
  margin: 8px 0;
}
.price-installments { color: var(--text-muted); margin-bottom: 24px; }
.guarantee {
  margin-top: 30px; padding: 20px;
  background: rgba(0, 168, 89, 0.10);
  border: 1px dashed rgba(0, 168, 89, 0.4);
  border-radius: var(--radius);
  font-size: 14px;
}

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testimonial {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.stars { color: var(--brasil-yellow); margin-bottom: 10px; font-size: 16px; }
.testimonial-text { font-style: italic; color: var(--text); }
.testimonial-author {
  display: flex; gap: 12px; align-items: center; margin-top: 16px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--gradient-flag);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #0b1224;
}
.author-meta strong { display: block; }
.author-meta span { font-size: 13px; color: var(--text-muted); }
.verified {
  display: inline-block; margin-left: 8px;
  background: rgba(0, 168, 89, 0.15); color: var(--brasil-green);
  padding: 2px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.rating-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 800px; margin: 0 auto 40px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; text-align: center;
}
.rating-summary .num {
  font-family: 'Anton', sans-serif; font-size: 42px;
  color: var(--brasil-yellow);
}
.rating-summary small { color: var(--text-muted); display: block; }

/* FAQ */
.faq { background: var(--bg-2); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 20px 24px;
  font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--brasil-green); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 24px 22px; color: var(--text-muted); }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.final-cta p { color: var(--text-muted); margin-bottom: 30px; }
.final-cta .cta-wrap { align-items: center; }

/* Footer */
.site-footer {
  background: #060a17; padding: 40px 0; text-align: center;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.site-footer a { color: var(--brasil-yellow); }

/* Mobile fixed CTA */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px 14px;
  background: rgba(11, 18, 36, 0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.mobile-cta-bar a {
  display: block; text-align: center;
  background: var(--gradient-cta); color: #fff;
  padding: 14px; border-radius: 12px;
  font-weight: 800; text-transform: uppercase;
  box-shadow: var(--shadow-cta);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero { padding: 50px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-mock { min-height: 320px; }
  .hero-mock .ebook { max-width: 260px; }
  .hero-bullets li { text-align: left; }
  .problem-grid, .recipes-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .header-cta { display: none; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
  .price-new { font-size: 56px; }
}
