/* =============================================
   Zebra de Ouro - Landing Page Estática
   Arquivo CSS puro - Sem dependências
   ============================================= */

/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Cores principais */
    --blue-50: #eff6ff;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    
    --yellow-300: #fde047;
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --yellow-600: #ca8a04;
    --yellow-700: #a16207;
    --yellow-900: #713f12;
    
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-500: #22c55e;
    --green-600: #16a34a;
    
    --red-50: #fef2f2;
    --red-600: #dc2626;
    
    --purple-50: #faf5ff;
    --purple-600: #9333ea;
    
    --orange-50: #fff7ed;
    --orange-600: #ea580c;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    --white: #ffffff;

    /* Hero background controls */
    --hero-bg-position: center 45%;
    --hero-bg-position-mobile: center 20%;
    --hero-bg-size: cover;
    
    /* Fonts */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.icon.arrow {
    transition: transform 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:hover .arrow {
    transform: translateX(0.5rem);
}

.btn-whatsapp {
    background: var(--green-500);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp:hover {
    background: var(--green-600);
}

.btn-cta {
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    color: var(--blue-900);
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    box-shadow: var(--shadow-2xl);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.5);
}

.btn-cta-green {
    background: var(--green-500);
    color: var(--white);
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl);
}

.btn-cta-green:hover {
    background: var(--green-600);
    transform: scale(1.1);
}

.btn-bolao {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    color: var(--white);
}

/* Gradients */
.bg-blue-gradient {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

.bg-yellow-gradient {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-700));
}

/* =============================================
   HEADER
   ============================================= */

/* ---- CONFIGURAÇÕES DO HEADER ----
   Para ativar/desativar, comente/descomente as opções abaixo:
   
   POSIÇÃO:
   - position: fixed    → Cabeçalho fixo (sticky, sempre visível)
   - position: absolute → Cabeçalho sobreposto ao conteúdo (scroll junto)
   - position: relative → Cabeçalho no fluxo normal da página
   
   FUNDO:
   - background: transparent                    → Totalmente transparente
   - background: rgba(0, 80, 255, 0.67)        → Azul semi-transparente
   - background: var(--blue-600)               → Azul sólido
   - background: linear-gradient(...)          → Gradiente
*/

.header {
    /* === POSIÇÃO === */
    position: absolute;      /* Sobreposto, mas rola junto com a página */
    /* position: fixed; */   /* ATIVAR para cabeçalho sticky/fixo */
    /* position: relative; */ /* ATIVAR para cabeçalho no fluxo normal */
    
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    
    /* === FUNDO === */
    background: transparent;                /* Transparente */
    /* background: rgba(0, 80, 255, 0.67); */ /* Azul semi-transparente */
    /* backdrop-filter: blur(12px); */      /* Desfoque (usar com fundo transparente) */
    
    /* === TRANSIÇÃO (para efeito de scroll) === */
    /* transition: background 0.3s ease, box-shadow 0.3s ease; */
}

/* Efeito ao rolar a página (requer position: fixed e JS para adicionar classe)
.header.is-scrolled {
    background: rgba(0, 80, 255, 0.67);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}
*/

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600)); */
    /* padding: 0.75rem 1.5rem; */
    /* border-radius: 0.5rem; */
    /* box-shadow: var(--shadow-md); */
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-img {
    height: 6rem;
    width: auto;
}

/* Header Actions - Container para botões */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Botão Instagram no Header */
.btn-instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F77737);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(193, 53, 132, 0.3);
}

.btn-instagram-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 53, 132, 0.5);
}

.btn-instagram-header svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--white);
}

/* Ocultar no mobile */
.desktop-only {
    display: flex;
}

/*!!!! Classe nome-loterica comentada também no index.html !!!
.nome-loterica {
     color: var(--white); 
     font-weight: 700; 
     font-size: 1.25rem; 
     text-decoration: none; 
}*/

/* WhatsApp Icons */
.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) invert(1); /* Branco */
}

.whatsapp-icon-dark {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(2088%) hue-rotate(206deg) brightness(93%) contrast(101%); /* Azul escuro */
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
    background-size: var(--hero-bg-size);
    background-position: var(--hero-bg-position);
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #000000ba;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration {
    position: absolute;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.decoration-1 {
    top: 5rem;
    left: 2.5rem;
    font-size: 4rem;
}

.decoration-2 {
    top: 10rem;
    right: 5rem;
    font-size: 5rem;
    animation-delay: 0.5s;
}

.decoration-3 {
    bottom: 8rem;
    left: 25%;
    font-size: 3.5rem;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
    margin: 5rem 0rem 0rem 0rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow-400);
    color: var(--blue-900);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-2xl);
    font-weight: 600;
}

.sparkle {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 20px var(--gray-900);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--yellow-300);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--white);
    text-shadow: 0 0 20px var(--gray-900);
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-subtitle .highlight {
    color: var(--yellow-300);
    font-weight: 700;
}

.hero-info {
    margin-top: 2rem;
    color: var(--white);
    text-shadow: 0 0 20px var(--gray-900);
    font-size: 1.2rem;
}

/* .hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--white), transparent);
} */

/* =============================================
   MEGA INFO SECTION
   ============================================= */
.mega-info {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-description {
    color: var(--gray-100);
}

.section-header.light .highlight {
    color: var(--yellow-300);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--blue-900);
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--yellow-400), var(--yellow-600));
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 60rem;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-2xl);
    border-color: var(--yellow-400);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.feature-icon.bg-blue {
    background: var(--blue-50);
}

.feature-icon.bg-blue svg {
    stroke: var(--blue-600);
}

.feature-icon.bg-yellow {
    background: var(--yellow-400);
}

.feature-icon.bg-yellow svg {
    stroke: var(--yellow-900);
}

.feature-icon.bg-green {
    background: var(--green-50);
}

.feature-icon.bg-green svg {
    stroke: var(--green-600);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-decoration {
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    color: var(--yellow-400);
}

.quote-decoration.left {
    bottom: -1rem;
    left: -1rem;
}

.quote-decoration.right {
    top: -1rem;
    right: -1rem;
}

.quote-content {
    position: relative;
    z-index: 10;
}

.quote-icon {
    width: 4rem;
    height: 4rem;
    stroke: var(--yellow-400);
    margin: 0 auto 1.5rem;
}

.quote-box blockquote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-box cite {
    color: var(--yellow-300);
    font-size: 1.25rem;
    font-style: normal;
}

/* Últimos Resultados Box */
.resultados-box {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.resultados-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resultados-title svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--yellow-600);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.resultado-item {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 0.875rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resultado-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--yellow-400);
}

.resultado-item.acumulado::before {
    content: '🔥';
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    font-size: 0.75rem;
}

.resultado-nome {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    color: var(--gray-600);
}

.resultado-nome.mega-sena { color: #209869; }
.resultado-nome.lotofacil { color: #930089; }
.resultado-nome.quina { color: #260085; }
.resultado-nome.lotomania { color: #F78100; }
.resultado-nome.timemania { color: #00FF48; }
.resultado-nome.dupla-sena { color: #A61324; }
.resultado-nome.dia-de-sorte { color: #CB852B; }
.resultado-nome.super-sete { color: #A8CF45; }
.resultado-nome.mais-milionaria { color: #2E3078; }
.resultado-nome.federal { color: #103099; }
.resultado-nome.loteca { color: #FB1F00; }

.resultado-concurso {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.resultado-valor {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-600);
    margin-bottom: 0.25rem;
}

.resultado-proximo {
    font-size: 0.7rem;
    color: var(--blue-600);
    font-weight: 500;
}

.resultado-data {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.resultado-status {
    display: inline-block;
    font-size: 0.6rem;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    margin-top: 0.375rem;
    font-weight: 600;
}

.resultado-status.acumulou {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.resultado-status.saiu {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.resultados-updated {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 1rem;
}

/* Skeleton loading */
.resultado-skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 0.75rem;
    height: 110px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Botão Ver Todos */
.btn-ver-todos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ver-todos:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ver-todos svg {
    width: 1rem;
    height: 1rem;
}

/* =============================================
   MODAL RESULTADOS
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: 1rem;
    width: 50%;
    max-width: 720px;
    min-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-container.modal-fullscreen {
    width: 50%;
    max-width: 720px;
    min-width: 500px;
    max-height: 90vh;
    border-radius: 1rem;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: var(--white);
    flex-shrink: 0;
}

/* =============================================
   NAVEGAÇÃO FLUTUANTE DO MODAL
   ============================================= */
.modal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

/* Indicador de scroll para mobile */
.nav-scroll-hint {
    display: none;
}

.nav-items {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-items::-webkit-scrollbar {
    display: none;
}

/* Logo oficial de cada jogo */
.nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.modal-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

/* Hover discreto */
.modal-nav-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
}

/* Estado ativo/selecionado */
.modal-nav-btn.active {
    background: var(--gray-100);
    border-color: var(--blue-400);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.modal-nav-btn.active .nav-icon {
    transform: scale(1.15);
}

/* Nomes dos jogos com cores oficiais */
.nav-game-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-game-name.mega-sena { color: #209869; }
.nav-game-name.lotofacil { color: #930089; }
.nav-game-name.quina { color: #260085; }
.nav-game-name.lotomania { color: #F78100; }
.nav-game-name.timemania { color: #00ff48; }
.nav-game-name.dupla-sena { color: #a61324; }
.nav-game-name.federal { color: #103099; }
.nav-game-name.loteca { color: #FB1F00; }
.nav-game-name.dia-de-sorte { color: #CB852B; }
.nav-game-name.super-sete { color: #A8CF45; }
.nav-game-name.mais-milionaria { color: #2E3078; }

/* Botão Início com texto */
.modal-nav-btn[data-game="all"] {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: var(--white);
    border-color: transparent;
}

.modal-nav-btn[data-game="all"]:hover {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
}

.modal-nav-btn[data-game="all"].active {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.modal-title svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--yellow-400);
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--white);
}

.modal-body {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
    background: var(--gray-50);
}

.modal-games-grid {
    display: grid;
    gap: 1.5rem;
}

/* Esconder iframe antigo, não é mais usado */
.modal-iframe {
    display: none;
}

.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--gray-500);
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--gray-200);
    border-top-color: var(--blue-600);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal Game Cards */
.modal-games-grid {
    display: grid;
    gap: 1.5rem;
}

.modal-game-card {
    background: var(--gray-50);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.modal-game-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-game-header.mega-sena { background: linear-gradient(135deg, #209869, #8fcbb3); }
.modal-game-header.lotofacil { background: linear-gradient(135deg, #930089, #c87fc3); }
.modal-game-header.quina { background: linear-gradient(135deg, #260085, #927fc1); }
.modal-game-header.lotomania { background: linear-gradient(135deg, #F78100, #fabf7f); }
.modal-game-header.timemania { background: linear-gradient(135deg, #00ff48, #99ff99); }
.modal-game-header.dupla-sena { background: linear-gradient(135deg, #A61324, #d28891); }
.modal-game-header.dia-de-sorte { background: linear-gradient(135deg, #CB852B, #eec48b); }
.modal-game-header.super-sete { background: linear-gradient(135deg, #A8CF45, #dde89c); }
.modal-game-header.mais-milionaria { background: linear-gradient(135deg, #2E3078, #9697bb); }
.modal-game-header.federal { background: linear-gradient(135deg, #103099, #8797cb); }
.modal-game-header.loteca { background: linear-gradient(135deg, #FB1F00, #fc8e7f); }

.modal-game-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.modal-game-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.modal-game-concurso {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.modal-game-body {
    padding: 1.25rem;
}

.modal-dezenas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.modal-dezena {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.modal-game-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.modal-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-meta-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-meta-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.modal-meta-value.destaque {
    color: var(--green-600);
    font-size: 1rem;
}

.modal-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

.modal-status-badge.acumulou {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.modal-status-badge.saiu {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

/* =============================================
   ESTILOS ESPECIAIS POR JOGO
   ============================================= */

/* Segundo sorteio da Dupla Sena */
.modal-segundo-sorteio {
    margin: 1rem 0;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--gray-300);
}

.modal-dezenas.segundo .modal-dezena {
    background: linear-gradient(135deg, #A61324, #d28891);
    color: var(--white);
}

/* Trevos da +Milionária */
.modal-trevo {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Item especial (Time do Coração, Mês da Sorte) */
.modal-meta-item.special {
    background: var(--gray-100);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

/* =============================================
   FEDERAL - Bilhetes Premiados
   ============================================= */
.federal-bilhetes-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.federal-bilhete {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem 1rem;
    align-items: center;
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #103099;
}

.federal-posicao {
    font-size: 0.75rem;
    font-weight: 700;
    color: #103099;
    text-transform: uppercase;
}

.federal-numero {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--gray-900);
    letter-spacing: 0.1em;
}

.federal-premio {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-600);
}

.federal-loterica {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: -0.25rem;
}

/* =============================================
   LOTECA - Jogos de Futebol
   ============================================= */
.loteca-jogos-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.loteca-jogo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
    background: var(--gray-50);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

.loteca-jogo.col1 { border-left: 3px solid var(--green-500); }
.loteca-jogo.col2 { border-right: 3px solid var(--green-500); }
.loteca-jogo.empate { border-left: 3px solid var(--yellow-500); border-right: 3px solid var(--yellow-500); }

.loteca-equipe {
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loteca-equipe:last-child {
    text-align: right;
}

.loteca-placar {
    font-weight: 800;
    color: var(--gray-900);
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.loteca-mais {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
}

.loteca-premios {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.loteca-premio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.loteca-premio-item:last-child {
    border-bottom: none;
}

.loteca-premio-item .destaque {
    font-weight: 700;
    color: var(--green-600);
}

@media (max-width: 640px) {
    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resultados-box {
        padding: 1rem;
    }
    
    /* Mobile: Modal tela cheia */
    .modal-overlay {
        padding: 0;
    }
    
    .modal-container,
    .modal-container.modal-fullscreen {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        max-height: 100vh;
        height: 100%;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    /* Navegação mobile com hint de scroll */
    .modal-nav {
        padding: 0.5rem;
    }
    
    .nav-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.65rem;
        color: var(--gray-400);
        padding: 0.25rem 0;
        animation: pulse-hint 2s ease-in-out infinite;
    }
    
    .nav-scroll-hint span:first-child,
    .nav-scroll-hint span:last-child {
        animation: slide-hint 1.5s ease-in-out infinite;
    }
    
    .nav-scroll-hint span:last-child {
        animation-direction: reverse;
    }
    
    @keyframes pulse-hint {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    @keyframes slide-hint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(-3px); }
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .nav-items {
        gap: 0.375rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .modal-nav-btn {
        padding: 0.4rem 0.5rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .nav-icon {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .nav-game-name {
        font-size: 0.55rem;
        letter-spacing: 0;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .modal-game-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-dezena {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .modal-game-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Esconder hint de scroll no desktop */
@media (min-width: 641px) {
    .mobile-only {
        display: none !important;
    }
}

/* =============================================
   BOLÕES SECTION
   ============================================= */
.boloes {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
    position: relative;
    overflow: hidden;
}

.boloes-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.boloes-decorations .decoration {
    position: absolute;
    font-size: 8rem;
}

.boloes-decorations .decoration:first-child {
    top: 5rem;
    left: 2.5rem;
}

.boloes-decorations .decoration:last-child {
    bottom: 5rem;
    right: 2.5rem;
}

.boloes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.bolao-card {
    position: relative;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bolao-card:hover {
    box-shadow: var(--shadow-2xl);
}

.bolao-card.highlighted {
    transform: scale(1.02);
    border: 4px solid var(--yellow-400);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: var(--yellow-400);
    color: var(--blue-900);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    font-size: 0.75rem;
}

.popular-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

.bolao-header {
    padding: 2rem;
    color: var(--white);
    position: relative;
}

.bolao-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    position: absolute;
    top: 0;
    right: 1rem;
    opacity: 0.2;
    font-size: 6rem;
}

.bolao-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.bolao-header p {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.bolao-content {
    padding: 2rem;
}

.bolao-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bolao-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--gray-700);
}

.bolao-features .check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.boloes-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* =============================================
   SOBRE SECTION
   ============================================= */
.sobre {
    padding: 5rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sobre-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(113, 63, 18, 0.95), 
        rgba(30, 64, 175, 0.95), 
        rgba(17, 24, 39, 0.95));
}

.sobre .container {
    position: relative;
    z-index: 10;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.sobre-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sobre-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sobre-icon {
    background: linear-gradient(90deg, var(--yellow-400), var(--yellow-600));
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sobre-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--blue-900);
}

.sobre-feature h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sobre-feature p {
    color: var(--gray-200);
}

.sobre-image {
    max-width: 60rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--yellow-400);
}

.sobre-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.sobre-image-caption {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    font-size: 1.25rem;
}

.sobre-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--yellow-400);
    color: var(--blue-900);
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-2xl);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 3rem auto 0;
    width: fit-content;
}

.sobre-badge svg {
    width: 1.5rem;
    height: 1.5rem;
}

.sobre .section-header {
    text-align: center;
}

/* =============================================
   SERVIÇOS SECTION
   ============================================= */
.servicos {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 70rem;
    margin: 0 auto 4rem;
}

.servico-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.servico-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--yellow-400);
}

.servico-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servico-icon svg {
    width: 2rem;
    height: 2rem;
}

.servico-icon.bg-blue { background: var(--blue-50); }
.servico-icon.bg-blue svg { stroke: var(--blue-600); }

.servico-icon.bg-green { background: var(--green-50); }
.servico-icon.bg-green svg { stroke: var(--green-600); }

.servico-icon.bg-purple { background: var(--purple-50); }
.servico-icon.bg-purple svg { stroke: var(--purple-600); }

.servico-icon.bg-yellow { background: var(--yellow-400); }
.servico-icon.bg-yellow svg { stroke: var(--yellow-900); }

.servico-icon.bg-red { background: var(--red-50); }
.servico-icon.bg-red svg { stroke: var(--red-600); }

.servico-icon.bg-orange { background: var(--orange-50); }
.servico-icon.bg-orange svg { stroke: var(--orange-600); }

.servico-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.servicos-cta {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    padding: 3rem;
    text-align: center;
}

.servicos-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.servicos-cta p {
    font-size: 1.25rem;
    color: var(--gray-100);
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-800), var(--gray-900));
    color: var(--white);
}

.footer .container {
    padding: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--yellow-400);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
    padding: 0.35rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    width: 5rem;
    height: 5rem;
    aspect-ratio: 1 / 1;
}

.footer-description {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow-400);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--yellow-300);
}

.footer-phone svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-location {
    margin-bottom: 1.5rem;
}

.location-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location-address {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.location-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.location-instagram:hover {
    color: var(--yellow-300);
}

.location-instagram svg {
    width: 1rem;
    height: 1rem;
}

/* Botão Instagram enfatizado no rodapé */
.btn-instagram-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F77737);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.4);
}

.btn-instagram-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.5);
}

.btn-instagram-footer svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--white);
}

.btn-instagram-footer span:first-of-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.btn-instagram-footer .instagram-handle {
    font-size: 1rem;
    font-weight: 700;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hours-item svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--yellow-400);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hours-day {
    color: var(--white);
    font-weight: 600;
}

.hours-time {
    color: var(--gray-300);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--gray-700);
    margin: 2rem 0;
}

.footer-legal {
    background: rgba(113, 63, 18, 0.2);
    border: 1px solid rgba(202, 138, 4, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-legal > svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--yellow-400);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-legal p {
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

.footer-legal .warning {
    color: var(--yellow-400);
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

.footer-accent {
    height: 0.5rem;
    background: linear-gradient(90deg, var(--yellow-400), var(--blue-500), var(--yellow-400));
}

/* =============================================
   RESPONSIVE - TABLET (768px)
   ============================================= */
@media (max-width: 768px) {
    /* Ocultar elementos desktop-only no mobile */
    .desktop-only {
        display: none !important;
    }
    
    .header-content {
        
        gap: 0.75rem;
        margin: 4rem 1rem 0rem 1rem;
    }
    
    .btn-whatsapp span {
        display: none;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        max-width: 90%;
        text-align: center;
    }

    .hero-info {
        font-size: 1rem;
        color: var(--white);
    }
    
    .btn-cta {
        padding: 1.2rem 2.1rem;
        font-size: 1rem;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .boloes-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .bolao-card.highlighted {
        transform: none;
    }

    /* Reposiciona o background do hero em telas menores para manter o foco visual */
    .hero {
        background-image: url('/landing/assets/images/hero-bg-mobile-.png') !important;
        background-position: var(--hero-bg-position-mobile);
    }
    
    .popular-badge {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
    }
    
    .popular-badge svg {
        width: 1rem;
        height: 1rem;
    }
    
    .bolao-header h3 {
        font-size: 1.5rem;
        padding-right: 5rem;
    }
    
    .sobre-image img {
        height: 16rem;
    }
    
    .footer-legal {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mega-info {
        padding: 3rem 0;
    }
    
    .mega-title {
        font-size: 1.5rem;
    }
}

/* =============================================
   RESPONSIVO - MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header-content {
        margin: 1rem 0rem 0rem 0rem;
        /* gap: 0.5rem;
        padding: 0.75rem; */
        flex-direction: column;
    }
    
    .logo {
        height: 10rem;
    }
    
    .logo-img {
        height: 9rem;
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 0.875rem;
    }
    
    .btn-whatsapp {
        right: 10px;
        bottom: 10px;
        position: fixed;
        padding: 0.5rem;
        border-radius: 50%;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero {
        padding-top: 7rem;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        gap: 0.25rem;
    }
    
    .hero-badge .sparkle {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-cta .icon {
        width: 1rem;
        height: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    /* Mega Info Mobile */
    .mega-info {
        padding: 2rem 0;
    }
    
    .mega-info .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .mega-title {
        font-size: 1.25rem;
    }
    
    .mega-value {
        font-size: 2rem;
    }
    
    .mega-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    /* Bolões Mobile */
    .boloes {
        padding: 3rem 0;
    }
    
    .boloes-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .bolao-card {
        border-radius: 1rem;
    }
    
    .popular-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        gap: 0.25rem;
    }
    
    .popular-badge svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .bolao-header {
        padding: 1.25rem;
    }
    
    .bolao-header h3 {
        font-size: 1.25rem;
        padding-right: 4.5rem;
    }
    
    .bolao-header p {
        font-size: 0.85rem;
    }
    
    .bolao-emoji {
        font-size: 4rem;
        right: 0.5rem;
    }
    
    .bolao-content {
        padding: 1.25rem;
    }
    
    .bolao-feature {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .bolao-pricing .price {
        font-size: 2rem;
    }
    
    .bolao-pricing .period {
        font-size: 0.8rem;
    }
    
    .btn-bolao {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Sobre Mobile */
    .sobre {
        padding: 3rem 0;
    }
    
    .sobre-grid {
        gap: 2rem;
    }
    
    .sobre-image img {
        height: 14rem;
        border-radius: 1rem;
    }
    
    .sobre-features {
        gap: 1rem;
    }
    
    .sobre-feature-card {
        padding: 1rem;
    }
    
    .sobre-feature-card h4 {
        font-size: 0.95rem;
    }
    
    .sobre-feature-card p {
        font-size: 0.8rem;
    }
    
    /* Serviços Mobile */
    .servicos {
        padding: 3rem 0;
    }
    
    .servicos-grid {
        gap: 0.75rem;
    }
    
    .servico-card {
        padding: 1rem;
    }
    
    .servico-card h3 {
        font-size: 0.9rem;
    }
    
    .quote-box {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .quote-box p {
        font-size: 0.9rem;
    }
    
    .servicos-cta {
        padding: 1.5rem 1rem;
    }
    
    .btn-cta-green {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Footer Mobile */
    /* .footer {
        padding: 2.5rem 0 1.5rem;
    } */
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-logo {
        width: 4rem;
        height: 4rem;
        padding: 2.8rem;
    }
    
    .footer-logo-text {
        font-size: 0.8rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .footer-schedule p {
        font-size: 0.85rem;
    }
    
    .footer-warning {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .footer-warning h5 {
        font-size: 0.85rem;
    }
    
    .footer-warning p {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        margin-top: 1.5rem;
    }
    
    .footer-copyright,
    .footer-tagline {
        font-size: 0.75rem;
    }
    
    .footer-legal {
        gap: 0.5rem;
    }
}

/* =============================================
   RESPONSIVE - MOBILE PEQUENO (360px)
   ============================================= */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-cta {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .bolao-header h3 {
        font-size: 1.1rem;
        padding-right: 4rem;
    }
    
    .popular-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }
    
    .bolao-pricing .price {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
