/* --- CONFIGURAÇÕES GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.full-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

/* --- 1. MENU AZUL E WRAPPER --- */
.nav-wrapper {
    width: 100%;
    background-color: #003399;
}

.main-nav {
    background-color: #003399;
    padding: 15px 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-content {
    justify-content: space-between;
}

.logo img {
    height: 65px;
    width: auto;
    transition: 0.3s;
}

.main-nav.sticky .logo img {
    height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu li a:hover { color: #ffcc00; }

.btn-aposte {
    background-color: #39b54a;
    color: white !important;
    text-decoration: none !important;
    padding: 10px 22px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-aposte:hover {
    background-color: #2e933c;
    transform: scale(1.05);
}

/* --- 2. BANNER --- */
.banner-container {
    width: 100%;
    line-height: 0;
    border-bottom: 5px solid #ffcc00;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.desktop-banner { display: block; }
.mobile-banner { display: none; }

/* --- 3. RESPONSIVIDADE (MOBILE) --- */
.mobile-only { display: none; }
.menu-toggle { display: none; }

@media (max-width: 992px) {
    .full-container { padding: 0 20px; }
    .logo, .desktop-only { display: none !important; }
    .main-nav { position: fixed; top: 0; left: 0; padding: 15px 0; }
    .nav-content { justify-content: flex-end; }
    .menu-toggle { display: block; background: none; border: none; color: white; font-size: 32px; cursor: pointer; }
    .menu {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background-color: #002673; padding: 20px;
        gap: 0; margin: 0; box-shadow: 0 10px 15px rgba(0,0,0,0.3);
    }
    .menu.active { display: flex; }
    .menu li { border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
    .menu li a { display: block; padding: 15px 0; text-align: center; }
    .mobile-only { display: block; }
    .btn-aposte-mobile {
        background-color: #39b54a; color: white; text-decoration: none;
        padding: 15px; border-radius: 6px; display: flex; align-items: center;
        justify-content: center; gap: 10px; font-weight: 800; margin-top: 20px;
    }
    .desktop-banner { display: none; }
    .mobile-banner { display: block; }
    .banner-container { margin-top: 65px; }
}

/* --- 4. COMPONENTES --- */
.content-vertical {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.content-vertical h2 {
    color: #003399;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Jogo Responsável */
.jogo-responsavel { background-color: #ffffff; width: 100%; }
.jogo-responsavel p { max-width: 900px; color: #666; line-height: 1.6; margin: 0 auto 30px auto; }
.selos-responsavel img { max-width: 300px; display: block; margin: 0 auto 10px; }
.selos-responsavel span { font-size: 14px; color: #999; font-weight: 600; }

/* Aprenda a jogar */
.aprenda-jogar { background-color: #f0f2f5; width: 100%; }
.aprenda-jogar .subtitle { color: #666; font-size: 18px; margin-bottom: 40px; }
.tutorial-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; text-align: left;
}
.step { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.step-number { font-size: 36px; font-weight: 900; color: #ff8a00; line-height: 1; min-width: 40px; }
.step p { color: #444; font-size: 16px; line-height: 1.5; }
.video-placeholder {
    position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.video-placeholder img { width: 100%; display: block; }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70px; height: 70px; background: rgba(255, 255, 255, 0.9);
    border: none; border-radius: 50%; font-size: 24px; color: #003399; cursor: pointer; transition: 0.3s;
}
.play-btn:hover { background: #ffffff; transform: translate(-50%, -50%) scale(1.1); }

@media (max-width: 992px) {
    .tutorial-grid { grid-template-columns: 1fr; }
    .content-vertical h2 { font-size: 26px; }
}

.results-container { padding: 40px 0; }

/* --- SEÇÃO NOVIDADES --- */
.secao-novidades {
    background-color: #003399;
    padding: 60px 0;
    color: white;
}

.novidades-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.novidades-texto { flex: 1; }
.novidades-texto h2 { font-size: 38px; font-weight: 900; margin-bottom: 10px; color: #fff; }
.novidades-texto p { font-size: 18px; max-width: 400px; line-height: 1.4; }

.form-novidades-inline { flex: 1.5; display: flex; gap: 15px; align-items: flex-start; }
.novidades-inputs { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.novidades-inputs input { width: 100%; padding: 12px 15px; border: none; border-radius: 4px; font-size: 15px; }

.btn-enviar-novidades {
    background-color: #ff8a00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    height: fit-content;
}

.btn-enviar-novidades:hover { background-color: #e67c00; transform: scale(1.05); }

@media (max-width: 992px) {
    .novidades-content { flex-direction: column; text-align: center; }
    .form-novidades-inline { flex-direction: column; width: 100%; }
    .btn-enviar-novidades { width: 100%; }
}

/* --- FOOTER --- */
.main-footer {
    background-color: #f1f1f1;
    padding: 60px 0 0;
    color: #444;
    border-top: 5px solid #ffcc00;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: #003399;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.social-btn:hover { transform: scale(1.1); }

.insta { background: #E1306C; }
.youtube { background: #FF0000; }
.whats { background: #25D366; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: #444; text-decoration: none; font-size: 14px; font-weight: 500; }
.footer-links li a:hover { text-decoration: underline; color: #003399; }

.address { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.address i { color: #ff8a00; font-size: 18px; }

.footer-bottom {
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    padding: 25px 0;
    font-size: 13px;
    color: #666;
}

.footer-bottom .full-container {
    justify-content: space-between;
}

.footer-icons-bottom {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

/* --- REGRA DE OURO PARA SUMIR COM O FOOTER NO MOBILE --- */

/* No Desktop ele aparece normal */
.desktop-only-footer {
    display: block;
}

/* No Mobile (telas menores que 992px) ele some com força total */
@media (max-width: 992px) {
    .desktop-only-footer, 
    .main-footer, 
    .footer-bottom,
    #footer, 
    footer {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
}