/* ========================================
   LOTÉRICA ESTAÇÃO DA SORTE - CSS
   Design moderno e inovador
   Cores: #fa9a2b (laranja) e #0b41bc (azul)
======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-blue: #0b41bc;
    --primary-orange: #fa9a2b;
    --white: #ffffff;
    --black: #000000;
    
    /* Cores oficiais da Caixa (baseadas no manual oficial) */
    --caixa-turquoise: #00b4d8;
    --caixa-blue-medium: #0077b6;
    --caixa-blue-dark: #023e8a;
    
    /* Gradientes oficiais da Caixa */
    --gradient-caixa: linear-gradient(135deg, var(--caixa-turquoise) 0%, var(--caixa-blue-medium) 50%, var(--caixa-blue-dark) 100%);
    --gradient-caixa-light: linear-gradient(135deg, var(--caixa-turquoise) 0%, rgba(0, 180, 216, 0.3) 100%);
    
    /* Gradientes da Estação da Sorte */
    --gradient-blue-white: linear-gradient(135deg, var(--primary-blue) 0%, rgba(11, 65, 188, 0.1) 100%);
    --gradient-orange-white: linear-gradient(135deg, var(--primary-orange) 0%, rgba(250, 154, 43, 0.1) 200%);
    
    /* Gradientes secundários */
    --gradient-secondary: linear-gradient(135deg, var(--primary-orange) 0%, #ffb84d 100%);
    --gradient-white: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    
    /* Cores neutras */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transições */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ========================================
   PRELOADER
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.lottery-balls {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.ball {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.ball-1 {
    background: #ff6b6b;
    animation-delay: -0.32s;
}

.ball-2 {
    background: #4ecdc4;
    animation-delay: -0.16s;
}

.ball-3 {
    background: #45b7d1;
    animation-delay: 0s;
}

.ball-4 {
    background: #96ceb4;
    animation-delay: 0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.preloader h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(11, 65, 188, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: var(--radius-full);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-xl);
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* ========================================
   BOTÕES
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-orange-white);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--gradient-orange-white);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Botão "Apostar": fundo laranja, texto branco */
.btn-game {
    background: var(--primary-orange);
    color: #fff;
    border: 2px solid var(--primary-orange);
    /* removi o blur e o fundo translúcido para garantir contraste */
    backdrop-filter: none;
    transition: all .2s ease;
}

.btn-game:hover {
    background: #cc5f00;            /* laranja um pouco mais escuro no hover */
    border-color: #cc5f00;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.1rem;
}

.btn-xl {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn-header {
    padding: var(--space-xs) var(--space-lg);
    font-size: 0.9rem;
}

/* Efeito shine nos botões */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease-in-out;
}

.btn:hover .btn-shine {
    left: 100%;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-caixa);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-ball {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ball-mega {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.ball-loto {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.ball-quina {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.ball-time {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.09);
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.ball-dia {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.07);
    top: 50%;
    left: 3%;
    animation-delay: 4s;
}

.ball-dupla {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    top: 70%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-xl);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-icon {
    color: var(--primary-orange);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    opacity: 0.9;
    margin-top: var(--space-sm);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item i {
    color: var(--primary-orange);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-vertical 2s infinite;
}

.scroll-arrow {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce-vertical {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        gap: var(--space-md);
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

/* ========================================
   FEATURED GAMES TICKER
======================================== */
.featured-games {
    background: var(--white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--gray-200);
}

.games-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: var(--space-3xl);
    animation: ticker 30s linear infinite;
}

.game-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--primary-blue);
}

.game-highlight i {
    color: var(--primary-orange);
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ========================================
   SEÇÕES GERAIS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text .section-badge {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text .section-description {
    text-align: left;
    max-width: none;
    margin-bottom: var(--space-2xl);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.feature-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.feature-content h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    width: 100%;
}

.card-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
    font-size: 2rem;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-footer {
    text-align: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GAMES SECTION
======================================== */
.games-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.game-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: opacity var(--transition-normal);
}

.mega-sena .card-background {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.lotofacil .card-background {
    background: linear-gradient(135deg, #651c95 0%, #56e6ff 100%);
}

.quina .card-background {
    background: linear-gradient(135deg, #312783 0%, #a78bfa 100%);
}

.lotomania .card-background {
    background: linear-gradient(135deg, #f39200 0%, #fbbf24 100%);
}

.timemania .card-background {
    background: linear-gradient(135deg, #e4fa82 0%, #ffed00 100%);
}

.dia-sorte .card-background {
    background: linear-gradient(135deg, #00aca9 0%, #67e8f9 100%);
}

.game-card:hover .card-background {
    opacity: 0.2;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.mega-sena .game-icon {
    background: linear-gradient(135deg, #009641 0%, #34d399 100%);
    
    
}
.lotofacil .game-icon {
    background: linear-gradient(135deg, #951c81 0%, #951c81 100%);
}

.quina .game-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.lotomania .game-icon {
    background: linear-gradient(135deg, #f5a105 0%, #fbbf24 100%);
}

.timemania .game-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.dia-sorte .game-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
}

.game-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.game-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.game-prize {
    background: var(--gray-50);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.prize-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.prize-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.card-actions {
    text-align: center;
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BOLÕES SECTION
======================================== */
.boloes-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.boloes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.bolao-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.bolao-card.featured {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
}

.bolao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.bolao-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.bolao-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
    font-size: 2rem;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.bolao-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.bolao-benefits {
    margin-bottom: var(--space-xl);
}

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.benefit i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.benefit span {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.bolao-stats {
    display: flex;
    justify-content: space-around;
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.bolao-stats .stat {
    text-align: center;
}

.bolao-stats .stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.bolao-stats .stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .boloes-grid {
        grid-template-columns: 1fr;
    }
    
    .bolao-card.featured {
        transform: none;
    }
    
    .bolao-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-caixa);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('BACKGROUND.png') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 2.5rem;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

.cta-buttons {
    margin-bottom: var(--space-2xl);
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    opacity: 0.9;
}

.guarantee-item i {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .cta-guarantee {
        gap: var(--space-md);
    }
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.info-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card .card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.info-card .card-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.info-card .card-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: var(--gradient-primary);
    color: var(--black);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    max-width: 400px;
    width: 100%;
}

.cta-card .card-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.cta-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary-orange);
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-card p {
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.card-benefits {
    margin-bottom: var(--space-xl);
}

.cta-card .benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.cta-card .benefit i {
    color: var(--primary-orange);
}

.cta-card .benefit span {
    opacity: 0.95;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-trust {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

.trust-badge i {
    color: var(--primary-orange);
}

.footer-links h4,
.footer-games h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-links ul,
.footer-games ul {
    list-style: none;
}

.footer-links li,
.footer-games li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-games a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover,
.footer-games a:hover {
    color: var(--primary-orange);
}

.contact-info {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gray-400);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-orange);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-legal {
    color: var(--gray-500);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--gradient-caixa);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   ANIMAÇÕES PERSONALIZADAS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVIDADE ADICIONAL
======================================== */
@media (max-width: 480px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .boloes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ========================================
   UTILITÁRIOS
======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .header,
    .scroll-to-top,
    .preloader {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .btn {
        border: 1px solid black;
        background: white;
        color: black;
    }
}
