/* ============================================================
   ZONADEVANTAGEM.PT - Estilos Principais
   ============================================================ */

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2540;
  --accent: #e8a020;
  --accent-hover: #d4901a;
  --green: #27ae60;
  --green-light: #2ecc71;
  --red: #e74c3c;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --bg-light: #f4f6fb;
  --bg-white: #ffffff;
  --border: #e0e4f0;
  --shadow: 0 4px 20px rgba(26,58,92,0.10);
  --shadow-card: 0 8px 32px rgba(26,58,92,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.8rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 40px 0; }

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.header-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-size: 0.88rem !important;
}
.header-cta:hover { background: var(--accent-hover) !important; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* mobile nav */
.mobile-nav {
  display: none;
  background: var(--primary);
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a5c 55%, #1e4a70 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.18;
}

.hero h1 .highlight {
  color: var(--accent);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.4); }

.btn-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.stat-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Hero card panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.panel-title {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.brand-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  min-width: 130px;
  min-height: 56px;
}

.brand-logo-strip:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(232,160,32,0.2);
  transform: translateY(-2px);
}

.brand-logo-strip img {
  max-height: 40px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

/* ============================================================
   OPERATORS TABLE
   ============================================================ */
.operators-section { background: var(--bg-light); }

.table-header {
  display: grid;
  grid-template-columns: 50px 220px 1fr 120px 130px 130px;
  gap: 12px;
  padding: 12px 20px;
  background: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.operators-list { display: flex; flex-direction: column; gap: 0; }

.operator-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  display: grid;
  grid-template-columns: 50px 220px 1fr 120px 130px 130px;
  gap: 12px;
  align-items: center;
  padding: 20px;
  transition: var(--transition);
}

.operator-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.operator-card:hover { background: #fafbff; box-shadow: var(--shadow); z-index: 1; }

.op-rank {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
}

.op-brand { display: flex; align-items: center; gap: 14px; }

.op-logo-wrap {
  width: 80px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.op-logo-wrap img {
  max-width: 72px;
  max-height: 44px;
  object-fit: contain;
}

.op-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.op-tag { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

.op-bonus { font-weight: 700; font-size: 1rem; color: var(--primary); }
.op-bonus span { font-size: 0.78rem; color: var(--text-light); font-weight: 400; display: block; }

.rating-stars { display: flex; gap: 3px; align-items: center; }
.rating-stars .star { font-size: 0.9rem; }
.rating-stars .star.full { color: var(--accent); }
.rating-stars .star.half { color: var(--accent); opacity: 0.6; }
.rating-num { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-left: 6px; }

.op-action .visit-btn {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.op-action .visit-btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,160,32,0.4); }

.badge-top {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-section { background: #fff; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent); }

.bonus-card-header {
  background: var(--primary);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bonus-logo {
  width: 64px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.bonus-logo img { max-width: 58px; max-height: 36px; object-fit: contain; }

.bonus-brand-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.bonus-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(39,174,96,0.25);
  border: 1px solid var(--green-light);
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bonus-status .dot { width: 5px; height: 5px; background: var(--green-light); border-radius: 50%; animation: pulse 1.5s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.bonus-card-body { padding: 20px; }

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.bonus-amount span { font-size: 0.85rem; color: var(--text-light); font-weight: 400; }

.bonus-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin: 12px 0;
  line-height: 1.55;
}

.bonus-terms {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0;
}

.term-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.term-icon { font-size: 0.9rem; }

.bonus-card-footer {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.claim-btn {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
  display: block;
  border: none;
  cursor: pointer;
  width: 100%;
}
.claim-btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,160,32,0.4); }

.tc-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--primary); }

.how-section .section-title { color: #fff; }
.how-section .section-subtitle { color: rgba(255,255,255,0.65); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(232,160,32,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.step-card:hover .step-icon { background: var(--accent); border-color: var(--accent); }

.step-num {
  position: absolute;
  top: -6px;
  right: calc(50% - 46px);
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.55; }

/* ============================================================
   EDITORIAL CONTENT
   ============================================================ */
.content-section { background: var(--bg-light); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.content-article h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.content-article p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-article h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 24px 0 10px;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.sidebar-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li .icon { font-size: 1rem; }

.srij-box {
  background: var(--primary);
  color: #fff;
  border: none;
}
.srij-box .sidebar-box-title { color: var(--accent); }
.srij-box p { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #fff; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--accent); box-shadow: 0 4px 16px rgba(232,160,32,0.12); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover { background: #fafbff; }

.faq-q-text { font-weight: 600; font-size: 0.97rem; color: var(--text-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
  font-weight: 700;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--primary-dark);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles-section { background: var(--bg-light); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.article-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

/* Article photo images */
.article-img-photo {
  height: 185px;
  overflow: hidden;
  position: relative;
}

.article-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-card:hover .article-img-photo img {
  transform: scale(1.05);
}

.article-body { padding: 20px; }

.article-tag {
  display: inline-block;
  background: rgba(232,160,32,0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.read-more:hover { color: var(--accent); gap: 10px; }

/* ============================================================
   RESPONSIBLE GAMBLING BANNER
   ============================================================ */
.responsible-banner {
  background: linear-gradient(135deg, #1a3a5c 0%, #0f2540 100%);
  padding: 48px 0;
  text-align: center;
}

.responsible-banner h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.responsible-banner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 560px; margin: 0 auto 24px; }

.resp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
}
.resp-btn:hover { background: var(--green-light); transform: translateY(-2px); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 16px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { color: var(--primary); margin-bottom: 12px; }
.contact-info p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 28px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,58,92,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label { font-size: 0.75rem; color: var(--text-light); }
.contact-value { font-weight: 600; color: var(--text-dark); font-size: 0.92rem; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  width: 100%;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,58,92,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,160,32,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-wrap { margin-bottom: 14px; }

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-col-title {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a:hover { color: var(--accent); }
.footer-links li a::before { content: '›'; font-size: 1rem; color: var(--accent); }

/* Regulators */
.regulators-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.reg-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 20px;
}

.regulators-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.regulator-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 110px;
  min-height: 58px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

a.regulator-item { cursor: pointer; }

.regulator-item:hover {
  background: #f8f8f8;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.regulator-item--static { cursor: default; }
.regulator-item--static:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255,255,255,0.25);
  background: #ffffff;
}

.regulator-item img {
  max-height: 42px;
  max-width: 110px;
  object-fit: contain;
  opacity: 1;
  transition: var(--transition);
  display: block;
}
.regulator-item:hover img { opacity: 0.85; }

/* Age 18+ badge */
.age18-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Regulator SVG/text fallback */
.reg-text {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  max-width: 600px;
}

.footer-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-meta a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-meta a:hover { color: var(--accent); }

/* ============================================================
   LEGAL SECTIONS (Privacidade / Termos)
   ============================================================ */
.legal-section { background: var(--bg-light); }

.legal-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-box h2 {
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 8px;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .legal-box { padding: 24px 18px; }
}

/* ============================================================
   END OF STYLES
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero h1 { font-size: 2.1rem; }

  .table-header,
  .operator-card { grid-template-columns: 40px 160px 1fr 100px 110px; }
  .table-header .th-rating,
  .operator-card .op-rating { display: none; }

  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .table-header { display: none; }
  .operator-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 16px;
  }
  .op-rank { display: none; }
  .op-brand { grid-column: 1 / -1; }
  .op-bonus { grid-column: 1; }
  .op-rating { display: none; }
  .op-action { grid-column: 2; text-align: right; }
  .op-action .visit-btn { width: auto; }

  .bonus-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .brands-inner { gap: 14px; }
  .brand-logo-strip { min-width: 100px; padding: 8px 12px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero { padding: 48px 0 36px; }
  .section-pad { padding: 40px 0; }
  .regulators-grid { gap: 10px; }
  .regulator-item { min-width: 90px; min-height: 52px; padding: 8px 10px; }
}
