body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER COM O GRADIENTE MULTICOLORIDO DE MATOZINHOS */
.cabecalho {
    background-color: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
    border-bottom: 5px solid transparent; 
    border-image: linear-gradient(to right, 
        #ff8b00 20%, 
        #ffcd00 40%, 
        #52a637 60%, 
        #006eb7 80%, 
        #009ce4 100%
    ) 1;
}

.logo-area img {
    max-height: 60px;
    width: auto;
    display: block;
}

.botoes-topo {
    display: flex;
    gap: 15px;
}

.botao-primario {
    /* Azul Escuro Matozinhos */
    background-color: rgba(3, 59, 108, 1);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(3, 59, 108, 0.3);
    transition: all 0.3s ease;
}

.botao-primario:hover {
    /* Azul Mais Escuro (Hover) */
    background-color: #022442;
    box-shadow: 0 6px 12px rgba(2, 36, 66, 0.4);
    transform: translateY(-2px);
}

.botao-secundario {
    display: inline-block;
    background-color: transparent;
    color: rgba(3, 59, 108, 1);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid rgba(3, 59, 108, 1);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.botao-secundario:hover {
    background-color: rgba(3, 59, 108, 1);
    color: #ffffff;
}

/* =========================================
   BOTÃO PULSANTE EXCLUSIVO (CONHECER NOTPAPER)
   ========================================= */
.btn-pulsante {
    animation: pulsar-botao 2s infinite;
}

.btn-pulsante:hover {
    animation: none;
    transform: scale(1.05);
}

@keyframes pulsar-botao {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 59, 108, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(3, 59, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(3, 59, 108, 0);
    }
}

.conteudo-principal {
    display: flex;
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.coluna-conteudo {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 2;
}

.coluna-lateral {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.cartao {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cartao:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.cartao h2 {
    font-size: 20px;
    margin-top: 0;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
    color: rgba(3, 59, 108, 1);
    margin-bottom: 10px;
}

/* CONHEÇA O NOTPAPER */
.branding {
    text-align: center;
    margin-bottom: 20px;
}

.branding img {
    max-width: 200px;
    height: auto;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.suporte-destaque {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8fbff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid rgba(3, 59, 108, 1);
}

.texto-suporte p {
    margin: 1%;
    line-height: 1.5;
}

.qr-code {
    max-width: 90px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* FAQ */
.lista-faq {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.lista-faq li {
    border-bottom: 1px solid #f0f4f8;
}

.lista-faq li:last-child {
    border-bottom: none;
}

.lista-faq a {
    display: block;
    padding: 12px 0;
    color: rgba(3, 59, 108, 1);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

.lista-faq a:hover {
    color: #022442;
    padding-left: 8px;
}

.item-oculto {
    display: none;
}

.botao-ver-mais {
    background-color: rgba(3, 59, 108, 1);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(3, 59, 108, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.botao-ver-mais:hover {
    background-color: #022442;
    box-shadow: 0 6px 12px rgba(2, 36, 66, 0.4);
    transform: translateY(-2px);
}

/* RODAPÉ */
.rodape {
    /* Azul super escuro para base */
    background-color: #022442;
    color: #ffffff;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 40px;
}

.rodape-conteudo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.logo-rodape {
    max-height: 37px;
    width: auto;
    padding: 0;
}

.rodape p {
    margin: 0;
}

/* =========================================
   LOGO CLICÁVEL NO RODAPÉ
   ========================================= */

.link-logo {
    display: inline-flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.link-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* =========================================
   REGRAS DE RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 768px) {

    .cabecalho {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .conteudo-principal {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .cartao {
        padding: 20px;
    }

    .suporte-destaque {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        border-left: none;
        border-top: 4px solid rgba(3, 59, 108, 1);
    }

    .qr-code {
        margin-top: 10px;
    }
}