:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --secondary: #3b82f6;
  --dark: #1e293b;
  --light: #f8fafc;
  --accent: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}
/* Correção para o layout do hero */
:root {
  --primary: #22c55e;
  --secondary: #7c3aed;
  --dark-blue: #0f172a;
  --dark-blue-light: #1e293b;
  --light: #f8fafc;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--light);
  line-height: 1.6;
  padding: 0;
  min-height: 100vh;
  margin: 0;
}

/* Cabeçalho */
header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  padding: 80px 0 40px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.hero h2 span {
  color: var(--primary);
  background: linear-gradient(to right, var(--primary), #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* CORREÇÃO IMPORTANTE: Cards em linha horizontal */
.hero-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .hero-cards {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.hero-card {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.hero-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* Estilos para páginas de termos e privacidade */
.page-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2rem;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content {
  color: #e2e8f0;
  line-height: 1.8;
}

.page-content h2 {
  color: #a5b4fc;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content li {
  margin-bottom: 10px;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-card {
    width: 100%;
    max-width: 320px;
  }
  
  .nav-menu {
    display: none;
  }
}
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--light);
  line-height: 1.6;
  padding: 0;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  padding: 80px 0 40px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.95);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  background: rgba(30, 41, 59, 0.3);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.footer-links a i {
  color: var(--primary);
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--light);
  transform: translateX(3px);
}

.footer-links a:hover i {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.footer-bottom {
  text-align: center;
  padding: 30px 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 23, 42, 0.5);
  color: #64748b;
  font-size: 0.9rem;
  border-radius: 10px;
}

.footer-bottom p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: var(--primary);
  color: #fff;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-customize {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-customize:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-card {
    width: 100%;
    max-width: 320px;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    border-radius: 12px 12px 0 0;
  }
}.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-card {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  width: 240px;
  text-align: center;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
}

.hero-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Ad Containers */
.ad-container {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 12px;
  padding: 10px;
  margin: 40px 0;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.ad-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-box {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

/* Lottery Section */
.lottery-section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--light);
}

.section-header p {
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.lottery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.lottery-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lottery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
  padding: 20px;
  background: linear-gradient(to right, rgba(34, 197, 94, 0.1), rgba(139, 92, 246, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-header { background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2)); }
.quina-header { background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.2)); }
.lotofacil-header { background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2)); }
.lotomania-header { background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(217, 70, 239, 0.2)); }

.card-header h3 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-header h3 i {
  font-size: 1.5rem;
}

.card-header .info-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card-body {
  padding: 30px 20px;
}

.numbers-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.number-ball {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mega-ball { 
  background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.quina-ball { 
  background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.lotofacil-ball { 
  background: linear-gradient(135deg, #f59e0b, #d97706); 
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.lotomania-ball { 
  background: linear-gradient(135deg, #ef4444, #dc2626); 
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.number-ball:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-footer {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last-update {
  font-size: 0.85rem;
  color: #94a3b8;
}

.generate-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  color: #0f172a;
}

.generate-btn i {
  font-size: 1.1rem;
}

.mega-btn { background: linear-gradient(to right, #3b82f6, #60a5fa); }
.mega-btn:hover { background: linear-gradient(to right, #2563eb, #3b82f6); }

.quina-btn { background: linear-gradient(to right, #8b5cf6, #a78bfa); }
.quina-btn:hover { background: linear-gradient(to right, #7c3aed, #8b5cf6); }

.lotofacil-btn { background: linear-gradient(to right, #f59e0b, #fbbf24); }
.lotofacil-btn:hover { background: linear-gradient(to right, #d97706, #f59e0b); }

.lotomania-btn { background: linear-gradient(to right, #ef4444, #f87171); }
.lotomania-btn:hover { background: linear-gradient(to right, #dc2626, #ef4444); }

/* Lottery Tips */
.lottery-tip {
  margin-top: 20px;
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--primary);
  padding: 15px;
  border-radius: 0 8px 8px 0;
}

.lottery-tip h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--primary);
}

.lottery-tip p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.primary-btn {
  padding: 14px 30px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.secondary-btn {
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1