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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: #1e73be;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    font-weight: 500;
}

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

.whatsapp-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.navbar {
    background: #1e73be;
    padding: 15px 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.cta-button {
    background: #ff8c00;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #e67c00;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 120px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e73be;
}

.highlight {
    color: #ff8c00;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff8c00;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: #1e73be;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #1e73be;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1e73be;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sorteios Especiais */
.sorteios-especiais {
    padding: 80px 0;
    background: white;
}

.sorteios-especiais h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e73be;
}

.sorteios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sorteio-card {
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.sorteio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sorteio-card a {
    text-decoration: none;
    color: white;
    display: block;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.card-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.sorteio-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.btn-apostar {
    background: white;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-apostar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Cores específicas para cada card */
.sorteio-card.boloes {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.sorteio-card.lotofacil {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.sorteio-card.megasena {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.sorteio-card.quina {
    background: linear-gradient(135deg, #663399, #5d2e7a);
}

.sorteio-card.duplasena {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.sorteio-card.milionaria {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.sorteio-card.timemania {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.sorteio-card.lotomania {
    background: linear-gradient(135deg, #ff8c00, #ff7700);
}

/* Seções Gerais */
.quem-somos,
.servicos,
.boloes,
.horario,
.contato {
    padding: 80px 0;
}

.quem-somos {
    background: #f8f9fa;
}

.servicos {
    background: white;
}

.boloes {
    background: #f8f9fa;
}

.horario {
    background: white;
}

.contato {
    background: #1e73be;
    color: white;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e73be;
}

.contato h2,
.contato .text-content h2 {
    color: white;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.contato p {
    color: rgba(255,255,255,0.9);
}

.diferenciais,
.boloes-info {
    margin-top: 30px;
}

.diferencial-item,
.info-item {
    margin-bottom: 25px;
}

.diferencial-item h4,
.info-item h4 {
    color: #1e73be;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.diferencial-item p,
.info-item p {
    color: #666;
    font-size: 1rem;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Serviços Grid */
.servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e73be;
}

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

.servico-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.servico-card h3 {
    color: #1e73be;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.servico-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Horário */
.horario h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e73be;
}

.horario-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.horario-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.horario-item h3 {
    color: #1e73be;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.horario-item p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 10px;
}

.horario-item small {
    color: #666;
    font-size: 0.9rem;
}

/* Contato */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contato-info h3,
.contato-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contato-item {
    margin-bottom: 25px;
}

.contato-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ff8c00;
}

.contato-item p {
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #20b358;
    transform: translateY(-2px);
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: #ff8c00;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ff8c00;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .section-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sorteios-grid,
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .header-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .cta-button {
        order: -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .sorteio-card,
    .servico-card {
        padding: 20px;
    }
    
    .horario-item {
        padding: 25px;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.sorteio-card,
.servico-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}



/* SEÇÃO DE RESULTADOS DOS SORTEIOS */
.resultados {
    padding: 80px 0;
    background: #f8f9fa;
}

.resultados h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e73be;
}

.resultados-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.resultado-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.resultado-card:hover {
    transform: translateY(-3px);
}

.resultado-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.loteria-nome {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1e73be;
}

.concurso-info {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.dezenas-container {
    margin-bottom: 20px;
}

.dezenas-label {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.dezenas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dezena {
    background: #1e73be;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.premio-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.premio-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.premio-valor {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
}

.acumulou {
    background: #ff8c00;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.proximo-sorteio {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
}

.resultados-disclaimer {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    grid-column: 1 / -1;
}

/* Responsividade para Resultados */
@media (max-width: 768px) {
    .resultados-grid {
        grid-template-columns: 1fr;
    }
    
    .dezenas {
        gap: 5px;
    }
    
    .dezena {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .resultado-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .concurso-info {
        text-align: left;
    }
}

