.container-principal { 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    padding: 5px;
    padding-top: 55px;
}

.conteudo-suporte {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.topicos {
    list-style: none;
    padding: 0;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.topico-individual {    
    background-color: #00acc1;
    border-radius: 5px;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
    overflow: hidden;
}

.titulo-topico { 
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}


.titulo-topico-1 { 
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

h3, h4 {
    font-weight: 500;
}

.seta {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.itens-topico {
    list-style: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.3s ease-in-out;
}

.itens-topico-1{   
    list-style: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.3s ease-in-out; 
    padding-left: 15px;
}

.itens-topico-1 li{
    background-color: #00acc1;
    padding: 8px;
    border-radius: 5px;
}

.hidden {
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

 

.topico-nivel-1 {
    background: #008799;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}


.titulo-topico-1 h4 {
    font-size: 16px; 
}






.contato-suporte {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: white; 
    width: 100%;
    max-width: 600px;
    border: 2px solid #00acc1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contato-suporte p {
    font-size: 16px;
    color: red;
    margin-bottom: 15px;
}

.botao-whatsapp,
.bloco-email-copia {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #00acc1;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none; 
    gap: 15px;
}

.botao-whatsapp:hover{
    background-color: #008799;    
}

.botao-whatsapp img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}


.icone-copiar-email {
    width: 22px;
    height: 22px;
    cursor: pointer;
    fill: #ffffff;
    stroke: #ffffff;
}

@media (max-width: 800px) { 
    h1 {
        font-size: 24px;
    }

    .opcao-navbar p{
        display: none;
    }
    
}
