/* ===== CLUBE DE APOSTAS — CSS GLOBAL ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  --primary: #09a957;
  --primary-dark: #077a3e;
  --accent: #f5c400;
  --accent2: #09a957;
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #555f6e;
  --border: #dde3ea;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

/* HEADER */
header {
  background: var(--primary);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo span { color: #f5c400; }
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: #f5c400; }
nav { display: flex; gap: 6px; flex-wrap: wrap; }
nav a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}
nav a:hover, nav a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2340 100%);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 24px;
}
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,179,0,0.4);
  color: var(--primary);
}

/* MAIN */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* SECTION TITLE */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

/* OPERATOR CARD */
.op-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.op-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
.op-rank {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 36px;
  text-align: center;
}
.op-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  min-width: 110px;
}
.op-bonus {
  flex: 1;
  font-size: 15px;
  color: var(--text);
}
.op-bonus strong { color: var(--accent2); font-size: 16px; }
.op-stars { color: var(--accent); font-size: 14px; letter-spacing: 1px; }
.op-btn {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.op-btn:hover { background: #27ae60; color: #fff; }

/* BONUS TABLE */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.bonus-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: #f8fafc; }
.bonus-table .btn-small {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
}
.bonus-table .btn-small:hover { background: #27ae60; color: #fff; }
.highlight { color: var(--accent2); font-weight: 700; }

/* CONTENT BLOCKS */
.content-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.content-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}
.content-block h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 18px 0 8px;
}
.content-block p { margin-bottom: 12px; color: #3a4a5a; font-size: 15px; }
.content-block ul { padding-left: 20px; margin-bottom: 12px; }
.content-block ul li { margin-bottom: 6px; font-size: 15px; color: #3a4a5a; }

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '＋'; color: var(--accent); font-size: 18px; }
.faq-a { padding: 0 20px 16px; font-size: 14px; color: #3a4a5a; }

/* BREADCRUMB */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* RATING BADGE */
.rating-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* PROS CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
.pros, .cons {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 16px;
}
.pros { border-left: 4px solid var(--accent2); }
.cons { border-left: 4px solid #e74c3c; }
.pros h4 { color: var(--accent2); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.cons h4 { color: #e74c3c; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.pros ul, .cons ul { padding-left: 16px; }
.pros ul li, .cons ul li { font-size: 13px; margin-bottom: 5px; color: #3a4a5a; }

/* BONUS BOX */
.bonus-box {
  background: linear-gradient(135deg, var(--primary), #0d2340);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 20px 0;
}
.bonus-box .bonus-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.bonus-box .bonus-desc { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }

/* FOOTER */
footer {
  background: #111111;
  color: rgba(255,255,255,0.75);
  padding: 40px 20px 20px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 15px; }
  .op-card { flex-wrap: wrap; gap: 10px; }
  .op-name { min-width: auto; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .bonus-table { font-size: 13px; }
  .bonus-table th, .bonus-table td { padding: 8px 8px; }
  /* Tabela scroll horizontal no mobile */
  .bonus-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bonus-table { min-width: 500px; }
  main { padding: 20px 12px; }
  .content-block { padding: 18px 14px; }
  .bonus-box .bonus-amount { font-size: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 30px 14px; }
  .op-btn { width: 100%; text-align: center; }
}

/* ===== MELHORIAS ADICIONAIS ===== */
body { font-size: 16px; color: #1a1a1a; }
.content-block p { font-size: 15px; color: #2a2a2a; line-height: 1.7; }
.content-block ul li { font-size: 15px; color: #2a2a2a; line-height: 1.7; }
.bonus-table td { font-size: 14px; color: #1a1a1a; }
.op-bonus { font-size: 15px; color: #1a1a1a; }
.section-title { font-size: 24px; color: #09a957; border-bottom-color: #09a957; }
.hero { background: linear-gradient(135deg, #077a3e 0%, #04542a 100%); }
.bonus-box { background: linear-gradient(135deg, #077a3e, #04542a); }
header { background: #09a957; }
.btn-cta { background: #f5c400; color: #1a1a1a; }
.btn-cta:hover { background: #e6b800; color: #1a1a1a; box-shadow: 0 6px 20px rgba(245,196,0,0.4); }
.op-btn { background: #09a957; }
.op-btn:hover { background: #077a3e; color: #fff; }
.bonus-table th { background: #09a957; }
.bonus-table .btn-small { background: #09a957; }
.bonus-table .btn-small:hover { background: #077a3e; }
.pros { border-left-color: #09a957; }
.pros h4 { color: #09a957; }
.footer-col a:hover { color: #f5c400; }

/* ===== MENU HAMBURGER MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #09a957;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: block;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #f5c400; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none !important; }
}

/* FOOTER MELHORADO */
footer { background: #111111 !important; }
.footer-col h4 { color: #f5c400; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.footer-col a { color: rgba(255,255,255,0.8) !important; font-size: 13px; margin-bottom: 8px; }
.footer-col a:hover { color: #f5c400 !important; }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); font-size: 12px; }
