/* ==========================================================================
   DESIGN SYSTEM - LOTÉRICA GUEDALA
   Cores Oficiais: Azul Real (#0A3871), Laranja Vibrante (#FF7A00)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Tokens */
  --primary: #0A3871;
  --primary-dark: #052044;
  --primary-light: #164e96;
  --primary-rgb: 10, 56, 113;
  
  --secondary: #FF7A00;
  --secondary-hover: #e56a00;
  --secondary-light: #fff2e6;
  --secondary-rgb: 255, 122, 0;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  
  --dark-bg: #06152B;
  --dark-surface: #0c2345;
  --dark-border: rgba(255, 255, 255, 0.12);
  
  --light-bg: #F8FAFC;
  --light-surface: #FFFFFF;
  --light-border: #E2E8F0;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 20px rgba(10, 56, 113, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 56, 113, 0.12);
  --shadow-glow-orange: 0 8px 25px rgba(255, 122, 0, 0.35);
  --shadow-glow-green: 0 8px 25px rgba(37, 211, 102, 0.35);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top Urgency Bar */
.top-bar {
  background: linear-gradient(90deg, #052044 0%, #0A3871 50%, #FF7A00 100%);
  color: #fff;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.caixa-seal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}

.brand-title span {
  color: var(--secondary);
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-pulse {
  position: relative;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: var(--radius-full);
  border: 2px solid var(--secondary);
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-green);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06d 0%, #189647 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--light-border);
  color: var(--text-main);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f1f5f9;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, #051937 0%, #0A3871 50%, #082852 100%);
  color: #fff;
  padding: 4.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.25) 0%, rgba(255,122,0,0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(37,211,102,0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFD15C;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight-orange {
  color: var(--secondary);
  position: relative;
}

.hero-title .highlight-green {
  color: #25D366;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item h4 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.hero-stat-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Feature Card (Right Column) */
.hero-card-featured {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #209869 0%, #FF7A00 50%, #25D366 100%);
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.featured-pill {
  background: #209869;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-prize-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-weight: 600;
}

.featured-prize-value {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #FFD15C;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.featured-details-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.f-detail-item {
  display: flex;
  flex-direction: column;
}

.f-detail-item span:first-child {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.f-detail-item span:last-child {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--secondary-light);
  color: var(--secondary);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* LOTTERY FILTERS */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.filter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* BOLOES GRID */
.boloes-section {
  padding: 4.5rem 0;
}

.boloes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

/* BOLÃO CARD */
.bolao-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.bolao-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 56, 113, 0.2);
}

.card-header-lottery {
  padding: 1.25rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.lottery-badge-wrap {
  display: flex;
  flex-direction: column;
}

.lottery-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.lottery-contest {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 600;
}

.status-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.status-badge.poucas_cotas {
  background: #FF7A00;
  color: #fff;
  animation: pulse-badge 1.8s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.status-badge.premiado {
  background: #FFD15C;
  color: #633e00;
}

.status-badge.esgotado {
  background: #64748B;
  color: #fff;
}

.card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-prize-box {
  margin-bottom: 1.1rem;
  text-align: center;
  background: #f8fafc;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  border: 1px dashed #cbd5e1;
}

.prize-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

.prize-amount {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.card-specs-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 1.2rem;
}

.spec-item {
  text-align: center;
}

.spec-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.spec-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.spec-divider {
  width: 1px;
  height: 28px;
  background: var(--light-border);
}

/* Dezenas Mini Preview */
.dezenas-preview-box {
  margin-bottom: 1.2rem;
}

.dezenas-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.btn-view-games {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.btn-view-games:hover {
  text-decoration: underline;
}

.balls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lotto-ball {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.25), 0 2px 4px rgba(0,0,0,0.1);
  user-select: none;
}

.lotto-ball.more-balls {
  background: #E2E8F0;
  color: var(--text-muted);
  font-size: 0.72rem;
  box-shadow: none;
}

/* Cotas Progress Bar */
.cotas-progress-wrap {
  margin-bottom: 1.3rem;
}

.cotas-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cotas-progress-bar {
  height: 8px;
  background: #E2E8F0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.cotas-progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

/* Quota Selector & Price */
.card-price-action {
  border-top: 1px solid var(--light-border);
  padding-top: 1.1rem;
  margin-top: auto;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-unit-col {
  display: flex;
  flex-direction: column;
}

.price-unit-col .price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-unit-col .price-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.quota-counter-box {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: 0.2rem;
}

.btn-counter {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-counter:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}

.btn-counter:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.counter-value {
  padding: 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  background: #fff;
  padding: 5rem 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  border: 1px solid var(--light-border);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-orange);
}

.step-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* TRUST & SECURITY GUARANTEE */
.trust-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, #edf2f7 100%);
}

.trust-box {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.trust-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.8rem 0;
}

.trust-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon-check {
  font-size: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-point-text strong {
  color: var(--text-main);
  display: block;
  font-size: 1rem;
}

.trust-point-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-card-visual {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.receipt-preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.receipt-preview-body {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--secondary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* FOOTER */
.footer {
  background: #051426;
  color: #fff;
  padding: 4.5rem 0 2rem 0;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* FLOATING BAR (MOBILE) & FLOATING WHATSAPP */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 80;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
}

/* MODAL / DIALOGS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 18, 38, 0.75);
  backdrop-filter: blur(8px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  position: relative;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.btn-close-modal {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.3rem;
  border-radius: var(--radius-sm);
}

.btn-close-modal:hover {
  color: var(--text-main);
  background: #f1f5f9;
}

.modal-body {
  padding: 1.8rem;
}

/* GAME DEZENAS TABLE / MODAL VIEW */
.game-table-item {
  background: #f8fafc;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.game-title-pill {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-balls-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.modal-balls-grid .lotto-ball {
  width: 34px;
  height: 34px;
  font-size: 0.9rem;
}

/* PIX PAYMENT BOX */
.pix-box {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin: 1.2rem 0;
}

.pix-qr-code {
  width: 170px;
  height: 170px;
  margin: 0 auto 1rem auto;
  background: #fff;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-key-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 0.4rem 0.8rem;
  margin-top: 0.8rem;
}

.pix-key-input {
  border: none;
  background: transparent;
  flex: 1;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.95rem;
  outline: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.78rem;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .boloes-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}
