body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
.cabecalho {
    background-color: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    border-top: 5px solid rgba(36, 86, 151, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-area img {
    max-height: 60px;
    width: auto;
    display: block;
}

.botoes-topo {
    display: flex;
    gap: 15px;
}

.botao-primario {
    background-color: rgba(36, 86, 151, 1);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(36, 86, 151, 0.3);
    transition: all 0.3s ease;
}

.botao-primario:hover {
    background-color: #1a237e;
    box-shadow: 0 6px 12px rgba(26, 35, 126, 0.4);
    transform: translateY(-2px);
}

.botao-secundario {
    display: inline-block;
    background-color: transparent;
    color: rgba(36, 86, 151, 1);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid rgba(36, 86, 151, 1);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.botao-secundario:hover {
    background-color: rgba(36, 86, 151, 1);
    color: #ffffff;
}

.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(36, 86, 151, 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(36, 86, 151, 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(36, 86, 151, 1);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

.lista-faq a:hover {
    color: #1a237e;
    padding-left: 8px;
}

.item-oculto {
    display: none;
}

.botao-ver-mais {
    background-color: rgba(36, 86, 151, 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(36, 86, 151, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.botao-ver-mais:hover {
    background-color: #1a237e;
    box-shadow: 0 6px 12px rgba(26, 35, 126, 0.4);
    transform: translateY(-2px);
}

/* RODAPÉ */
.rodape {
    background-color: #1a237e;
    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;
}

/* =========================================
   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(36, 86, 151, 1);
    }

    .qr-code {
        margin-top: 10px;
    }
}