* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #01031E;
    /* Cor de fundo escuro, igual ao footer/theme */
}

::-webkit-scrollbar-thumb {
    background: #FF0000;
    /* Vermelho principal hiperbet */
    border-radius: 10px;
    border: 3px solid #01031E;
    /* Margem interna (track color) pra dar um visual flutuante */
}

::-webkit-scrollbar-thumb:hover {
    background: #8E1116;
    /* Vermelho mais escuro no hover */
}

html {
    font-family: 'Inter';
    overflow-x: hidden;
    scrollbar-color: #FF0000 #01031E;
    /* Suporte pro Firefox */
    scrollbar-width: thin;
}

body {
    background-color: #06024f;
    width: 100%;
    box-sizing: border-box;
    color: white;
    padding-top: 80px;
    /* Space for fixed navbar */
}

button {
    margin-top: 2rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(1, 3, 30, 0.95);
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid var(--bluehighlight); */
    z-index: 9999;
    display: flex;
    align-items: center;
}

/* BARRA DE PROGRESSO ABAIXO DO NAVBAR */
.scroll-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-progress {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 0.1s ease-out;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Standardized side padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bluehighlight);
}

.nav-divider {
    color: var(--bluehighlight);
    font-weight: 300;
    opacity: 0.5;
}

.btn-nav-cadastre {
    background: linear-gradient(180deg, #00236B 0%, #0F468F 100%);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid var(--bluehighlight);
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.1s ease;
}

.btn-nav-cadastre:hover {
    box-shadow: 0 0 15px var(--bluehighlight);
    transform: scale(1.05);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

:root {
    /* MAIN COLORS */
    --darkred: #8E1116;
    --red: #FF0000;
    --bluedarker: #01031E;
    --bluedark: #040738;
    --bluemedium: #040738;
    --bluelight: #172079;
    --bluelighter: #00226A;
    --bluehighlight: #519DFF;

    /* ADDITIONAL */
    --info: #519DFF;
    --error: #FD0404;
    --success: #009411;
    --addiionalinfo: #FF9800;

    --bs-body-bg: #06024f;
    --bs-body-color: #your-text-color;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    place-items: center;
}

.hero-banner {
    width: 100%;
    max-width: 1088px;
    margin: 0 auto;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.btn-contato {
    background: linear-gradient(180deg, #00236B 0%, #0F468F 100%);
    font-size: 1.625rem;
    color: white;
    text-align: center;
    width: 262px;
    height: 64px;
    border-radius: 500px;
    border-width: 1px;
    padding: 16px 12px;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contato:hover {
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--bluehighlight);
}

p {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 400;
    color: white;
}

/* CONTAINER DO FORMULÁRIO */
form.contact-form input,
form.contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    /* Instead of fixed pixels */
}

.contact-form {
    background: rgba(1, 3, 30, 0.6);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 700px;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(81, 157, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ESTILO DOS INPUTS E TEXTAREA */
.input-group {
    margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--bluelighter);

    /* Cor interna azul */
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

/* Efeito de foco */
.input-group input:focus,
.input-group textarea:focus {
    box-shadow: 0 0 8px var(--red);
    background-color: var(--bluelight);
    border: 1px solid var(--red);
}

/* Ajuste do placeholder */
::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ÁREA DA MENSAGEM */
textarea {
    resize: none;
}

/* BOTÃO ENVIAR */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding: 25px;
}

.btn-submit {
    background: linear-gradient(180deg, var(--bluehighlight) 0%, var(--bluelighter) 100%);
    color: #ffffff;
    border: none;
    padding: 15px 70px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(81, 157, 255, 0.3);
}

.btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--bluehighlight);
}

.whats-icon {
    width: 75px;
    height: 75px;
    transition: all 0.3s ease;
}

.whats-icon:hover {
    cursor: pointer;
    transform: scale(1.05);
}

/* SECTION 2 */
.section2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    place-items: center;
    margin-block: 20px;
}

.title {
    font-weight: 700;
    font-style: Bold;
    font-size: 2.1rem;
    letter-spacing: 1px;
    text-align: center;
    color: red;
    margin: 20px;
}

span {
    color: var(--red);
}

.tutorial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    border-radius: 20px;
}

.tutorial-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

/* Remove individual margins that might conflict with the gap */
.tutorial-item .tutorial-icon,
.tutorial-item .tutorial-button,
.tutorial-item .tutorial-p {
    margin: 0;
}

.tutorial-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    /* This ensures all tutorial-items are the same height */
    gap: 20px;
    margin-bottom: 50px;
}

.tutorial-item {
    flex: 1;
    /* Makes all items take up equal width */
    max-width: 350px;
    /* Optional: prevents items from getting too wide on large screens */
}

.tutorial-button {
    width: 40%;
    background-color: #145AB3;
    height: 51.6px;
    width: 223.43px;
    color: white;
    border: none;
    border-radius: 12px;

    font-weight: 700;
    font-style: Bold;
    font-size: 26px;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
}

img.tutorial-icon {
    width: 150px;
    /* Set a consistent width */
    height: 150px;
    /* Set a consistent height */
    object-fit: contain;
    /* CRITICAL: This ensures the image isn't squished or stretched */
    flex-shrink: 0;
    /* Prevents the image from being compressed by other elements */
    display: block;
    margin: 0 auto;
    /* Ensures it's centered if the container is wider */
}

.tutorial-p {
    text-align: center;
    width: 100%;
    /* Ensures the text takes up the full width of the item container */
}

/* Container for the text and image */
.for-who {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Your current setup */
    align-items: stretch;
    /* CRITICAL: Makes both columns equal height */
    width: 100%;
    max-width: 1100px;
    /* Match this to your other centered content */
    margin: 0 auto;
    gap: 40px;
    /* Spacing between text and image */
    position: relative;
    max-width: 1100px;
    margin: auto;
    border-bottom: none;
    /* Remove the original border */
}

/* Removed blue divider line */

/* The text container */
.for-who-div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.for-who-div1 h2 {
    font-size: 2.8rem;
    color: red;
    text-shadow: 1px 1px 1px gray;
}

.for-who-div1 p {
    margin-top: 0px;
    text-align: left;
}

/* The image next to it */
.for-who-personagens {
    width: 100%;
    height: 100%;
    /* Forces image to match the text container's height */
    object-fit: cover;
    /* Prevents the image from stretching/distorting */
    display: block;
}

.btn-for-who {
    background: linear-gradient(180deg, #00236B 0%, #0F468F 100%);
    color: white;
    width: 353;
    height: 64;
    padding: 22px 18px;
    border-radius: 500px;

    font-weight: 700;
    font-style: Bold;
    font-size: 1.3rem;
    line-height: 100%;
    letter-spacing: 2px;
    vertical-align: middle;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-for-who:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--bluehighlight);
}

/* Layout Principal */
.confira {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Moeda na esquerda, texto na direita */
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
}

.moeda-img {
    width: 100%;
    max-width: 462px;
    height: auto;
    display: block;
}


/* Título */
.confira-content h2 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Estilização da Lista (Quadrados Vermelhos) */
.confira-list {
    list-style: none;
    /* Remove os números padrão */
    counter-reset: custom-counter;
    /* Inicializa o contador */
    padding: 0;
}

.confira-list li {
    counter-increment: custom-counter;
    /* Soma +1 em cada item */
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    align-items: center;
}

/* O Quadrado Vermelho */
.confira-list li::before {
    content: counter(custom-counter);
    /* Exibe o número do contador */
    background-color: #FF0000;
    /* Seu --red */
    color: white;
    font-weight: 800;
    font-size: 20px;

    /* Tamanho do Quadrado */
    width: 35px;
    height: 35px;

    /* Alinhamento Central do Número */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Espaçamento */
    margin-right: 15px;
    flex-shrink: 0;
    /* Impede que o quadrado amasse */
}

/* Botão T&C (Igual ao da imagem) */
.btn-t-c {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 5px 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
}

.confira-btn {
    background: linear-gradient(180deg, #00236B 0%, #0F468F 100%);
    color: white;
    width: 353px;
    height: 64px;
    border-radius: 100px;
    padding: 16px 12px;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.confira-btn:hover {
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--bluehighlight);
}

.confira-content h2 {
    font-size: 2rem;
}

.seja-afiliado {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 70%;
    margin: 12px auto;
}

.seja-afiliado-box h2 {
    font-size: 2.5rem;
}

.seja-afiliado-box p {
    text-align: left;
}

.seja-afiliado-box button {
    background: linear-gradient(180deg, #00236B 0%, #0F468F 100%);
    color: white;
    width: 353px;
    height: 64px;
    border-radius: 100px;
    padding: 16px 12px;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.seja-afiliado-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--bluehighlight);
}

.seja-afiliado-img {
    width: 382px;
    height: 474px;
    display: block;
}

.faq-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    margin: 40px auto;
    gap: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bluedark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.faq-item:hover {
    border-color: var(--red);
    background-color: var(--bluelight);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.faq-img-wrapper {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-info h2 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    text-align: left;
}

.faq-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    padding: 20px;
}

.modal-content {
    background-color: var(--bluedark);
    border: 2px solid var(--red);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    animation: modalScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--red);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.modal-header img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.modal-header h3 {
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    text-align: center;
}

/* ESTILOS DO CAROUSEL */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.carousel-item a {
    display: block;
    width: 100%;
}

.carousel-item img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.carousel-item.active {
    display: flex;
    animation: fade 0.8s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--red);
    transform: scale(1.2);
}


/* FOOTER */
.footer {
    background-color: #01031E;
    border-top: none;
    /* Border removed */
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    color: var(--red);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-column ul li {
    margin-bottom: 12px;
    text-align: left;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--red);
}

.footer-badge {
    margin-top: 20px;
}

.footer-badge img {
    height: 50px;
    width: 100%;
}

.footer-logo-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo-column img {
    height: 60px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* BOTÃO PARA SUBIR A PÁGINA */
.scroll-up {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    /* DEIXA FIXO NO CANTO */
    bottom: 50px;
    left: 45px;
    z-index: 1000;
    /* DEIXA FIXO NO CANTO */
}

.scroll-up img {
    margin-top: 15px;
    padding: 5px;
    border-radius: 25px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    background: rgba(0, 37, 162, 0.9);

}

.scroll-up img:hover {
    cursor: pointer;
}

/* RESPONSIVIDADE MOBILE (BASEADO NO FIGMA) */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        padding-top: 80px;
        margin: 0;
    }

    button {
        font-size: 1rem;
        letter-spacing: 0px;
        margin-top: 1rem;
    }

    .nav-container {
        padding: 0 20px;
        /* Safe padding for mobile edge */
    }

    .nav-logo img {
        width: 100%;
        margin: 0;
    }

    .scroll-up img {
        background: rgba(0, 37, 162, 0.8);
        position: fixed;
        bottom: 300px;
        left: 5px;
        z-index: 1000;
        width: 40px;
        height: 40px;
    }

    .section,
    .section2,
    .confira,
    .seja-afiliado,
    .faq-box,
    .for-who {
        padding: 0;
        /* Remove padding for bleed-to-edge elements */
        width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px;
    }

    /* Re-add padding to text-based items */
    .title,
    .paragraph,
    .contact-form,
    .tutorial-box,
    .for-who-div1,
    .confira-content,
    .seja-afiliado-box,
    .faq-box {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Títulos */
    .title,
    .confira-content h2,
    .seja-afiliado-box h2,
    .for-who-div1 h2 {
        font-size: 1.8rem !important;
        margin: 15px 0 !important;
        text-align: center !important;
    }

    p,
    .paragraph,
    .tutorial-p {
        font-size: 1.1rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* Hero Carousel - Sangrando as bordas corretamente */
    .hero-banner {
        width: 100% !important;
        margin: 0 !important;
        height: auto !important;
        overflow: hidden;
    }

    .hero-banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        padding: 5px 10px !important;
        font-size: 18px !important;
        background-color: rgba(0, 0, 0, 0.2) !important;
    }

    /* Formulário */
    .contact-form {
        width: 95% !important;
        /* Forces it to stay slightly away from edges */
        max-width: 100%;
        padding: 30px 20px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    /* Tutoriais (Passos) */
    .tutorial-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .tutorial-item {
        max-width: 100% !important;
        flex: none !important;
    }

    .tutorial-button {
        width: 200px !important;
        font-size: 1.2rem !important;
    }

    .tutorial-icon {
        width: 100px !important;
        height: 100px !important;
    }

    /* Seção Pra Quem? */
    .for-who {
        display: flex !important;
        flex-direction: column !important;
        border-bottom: 0px solid transparent;
    }

    .for-who-div1 {
        order: 1;
    }

    .btn-for-who {
        width: 100%;
        max-width: 280px;
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-top: 1rem;
    }

    .for-who-personagens {
        order: 2;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    /* O que saber (Moeda) */
    .confira {
        display: flex !important;
        flex-direction: column !important;
    }

    .moeda-img {
        order: -1;
        /* Moeda no topo conforme Figma */
        max-width: 180px !important;
    }

    .confira-list li {
        text-align: left !important;
        font-size: 1rem !important;
    }

    /* Seja Afiliado */
    .seja-afiliado {
        display: flex !important;
        flex-direction: column !important;
    }

    .seja-afiliado-img {
        width: 70% !important;
        height: auto !important;
        max-width: 250px;
        margin: 10px auto;
    }

    .seja-afiliado-box button {
        font-size: 1.2rem;
        letter-spacing: 0px;
        margin-top: 1rem;
        width: 100%;
        max-width: 250px;
        letter-spacing: 1px;
    }

    /* FAQ */
    .faq-box {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .faq-item {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .faq-item img {
        width: 100px !important;
        height: 100px !important;
    }

    .faq-item h2 {
        font-size: 1.2rem !important;
        text-align: center !important;
    }

    .faq-item p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    /* Botões Gerais */
    .btn-submit,
    .confira-btn,
    .btn-contato {
        width: 100% !important;
        max-width: 280px !important;
        font-size: 1.2rem !important;
        height: 60px !important;
        letter-spacing: 1px;
    }

    .faq-box {
        grid-template-columns: 1fr;
    }

    .faq-item {
        flex-direction: column;
        text-align: center;
    }

    .faq-info h2,
    .faq-info p {
        text-align: center;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    /* Nav Mobile */
    .nav-container {
        padding: 0 20px;
        justify-content: center;
        /* Centraliza o logo */
        position: relative;
    }

    .nav-logo {
        margin: 0 auto;
    }

    .nav-links,
    .nav-divider {
        display: none;
    }

    .btn-nav-cadastre {
        display: none;
        /* Esconde no topo para usar apenas dentro do menu */
    }

    /* Estilo do botão dentro do menu mobile */
    .nav-links.active .btn-nav-cadastre {
        display: flex;
        width: 100%;
        margin-top: 10px;
        justify-content: center;
        padding: 12px;
        background: linear-gradient(180deg, var(--red) 0%, var(--darkred) 100%);
        border: none;
        order: 10;
        /* Move para o final */
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 61px;
        /* Sobrepor 1px para evitar vãos */
        right: 0;
        left: auto;
        width: fit-content;
        min-width: 280px;
        height: auto;
        background: rgba(1, 3, 30, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        gap: 3px;
        /* Mais justo */
        border-radius: 0 0 0 20px;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(81, 157, 255, 0.2);
        border-bottom: 1px solid rgba(81, 157, 255, 0.2);
        z-index: 1000;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 700;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /* Texto na direita */
        gap: 15px;
        padding: 8px 0;
        color: white;
        text-decoration: none;
    }

    .nav-links.active .nav-link:first-of-type {
        padding-top: 0;
        /* Remove o espaço no topo do primeiro item */
    }

    .nav-link::before {
        content: "";
        width: 24px;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        border: none;
        margin-right: auto;
    }

    /* ADICIONE OS LINKS DAS SUAS IMAGENS AQUI */
    .icon-home::before {
        background-image: url('img/home_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png');
    }

    .icon-about::before {
        background-image: url('img/info_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png');
    }

    .icon-marketing::before {
        background-image: url('img/brush_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png');
    }

    .icon-news::before {
        background-image: url('img/news_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png');
    }

    .icon-login::before {
        background-image: url('img/login_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png');
    }

    .nav-mobile-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Footer Mobile */
    .footer {
        padding-top: 40px;
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        gap: 30px;
        padding-left: 10%;
        /* Subtle inset for better mobile look */
    }

    .footer-column {
        align-items: flex-start !important;
    }

    .footer-column h3 {
        text-align: left !important;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .footer-badge,
    .footer-logo-column {
        display: flex;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .footer-logo-column img {
        height: 45px;
        display: none;
    }
}