/* Louco por Futebol — Global Stylesheet */
:root {
  --bg: #0d1117;
  --bg-card: #161b22;
  --bg-hover: #1c2330;
  --border: #30363d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --gold: #e8b41a;
  --gold-dark: #c79a0f;
  --green: #25D366;
  --green-dark: #1da851;
  --red: #f85149;
  --blue: #58a6ff;
  --radius: 12px;
  --max-width: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

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

/* === HEADER === */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--max-width); margin: 0 auto;
}
.logo {
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  text-transform: uppercase; letter-spacing: -0.5px;
}
.logo span { color: var(--text); }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all .2s; border: none; text-decoration: none;
}
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #0d1117; }
.btn-gold:hover { background: var(--gold-dark); color: #0d1117; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #0d1117; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* === HERO === */
.hero {
  text-align: center; padding: 80px 20px 60px;
  background: radial-gradient(ellipse at center, rgba(232,180,26,0.08) 0%, transparent 70%);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem); color: var(--text-muted);
  max-width: 700px; margin: 0 auto 32px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === SECTIONS === */
.section { padding: 60px 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  text-align: center; margin-bottom: 16px;
}
.section-title .highlight { color: var(--gold); }
.section-sub {
  text-align: center; color: var(--text-muted); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 40px;
}

/* === CARDS === */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all .3s;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--gold); }
.card p { color: var(--text-muted); font-size: .95rem; }

/* === PRICING === */
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all .3s; position: relative;
}
.pricing-card:hover { border-color: var(--gold); }
.pricing-card.featured {
  border-color: var(--gold); border-width: 2px;
  box-shadow: 0 0 30px rgba(232,180,26,0.15);
}
.badge-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0d1117; padding: 4px 16px;
  border-radius: 20px; font-size: .8rem; font-weight: 700;
}
.plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 2.5rem; font-weight: 800; color: var(--gold); margin: 16px 0; }
.plan-price .unit { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-features { list-style: none; margin: 24px 0; text-align: left; }
.plan-features li { padding: 8px 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.plan-features li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* === MATCH CARDS === */
.match-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .2s;
}
.match-card:hover { border-color: var(--gold); }
.match-time { font-size: .85rem; color: var(--gold); font-weight: 700; }
.match-teams { display: flex; align-items: center; gap: 16px; flex: 1; }
.match-team { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.match-vs { color: var(--text-muted); font-size: .9rem; }
.match-league { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; }

/* === FAQ === */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.05rem; transition: background .2s;
}
.faq-question:hover { background: var(--bg-hover); }
.faq-question::after { content: "+"; font-size: 1.5rem; color: var(--gold); }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); }

/* === BLOG === */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all .3s;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, #1a1f2e, #0d1117);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--text-muted); font-size: .9rem; }

/* === ARTICLE === */
.article { max-width: 800px; margin: 0 auto; }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; line-height: 1.3; }
.article-meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 32px; }
.article h2 { font-size: 1.6rem; margin: 32px 0 16px; color: var(--gold); }
.article h3 { font-size: 1.3rem; margin: 24px 0 12px; }
.article p { margin-bottom: 20px; color: var(--text); }
.article ul, .article ol { margin: 0 0 20px 24px; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 4px solid var(--gold); padding: 16px 24px;
  background: var(--bg-card); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0; font-style: italic; color: var(--text-muted);
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(232,180,26,0.1));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px; text-align: center; margin: 40px 0;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 24px; }

/* === STATS === */
.stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.stat-label { color: var(--text-muted); font-size: .9rem; }

/* === FOOTER === */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 48px 0 24px; margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.footer-brand h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; padding: 24px 20px 0; margin-top: 32px;
  border-top: 1px solid var(--border); color: var(--text-muted); font-size: .85rem;
}

/* === FLOATING WHATSAPP === */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all .3s;
  animation: pulse 2s infinite;
}
.wa-float:hover { background: var(--green-dark); transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* === BREADCRUMB === */
.breadcrumb { padding: 20px 0; color: var(--text-muted); font-size: .85rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 20px; gap: 16px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
  .match-teams { flex-direction: column; gap: 8px; }
  .stats { gap: 20px; }
  .cta-banner { padding: 32px 20px; }
}
