section.duvidas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #080D19;
    padding: 40px 80px 80px 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.duvidas .titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 20px 0;
}

.duvidas .titulo h3 {
    font-family: 'Alexandria';
    font-weight: 300;
    font-size: 14px;
    color: #ffffff50;
    letter-spacing: 8px;
}

.duvidas .titulo h2 {
    font-family: 'Alexandria';
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    line-height: 1.2;
    width: 100%;
    max-width: 550px;
    margin: 10px 0 10px 0;
}

.duvidas .duvida {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    background-color: #FFFFFF10;
    border-radius: 10px;
    padding: 25px;
    margin: 0 0 20px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.duvidas .duvida.ativo .nome img {
    transform: rotate(180deg);
}

.duvidas .duvida .nome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.duvidas .duvida .nome h3 {
    font-family: 'Figtree';
    font-weight: 300;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s;
}

.duvidas .duvida .nome img {
    width: 15px;
    min-width: 15px;
    transition: all 0.3s;
}

.duvidas .duvida.ativo p {
    line-height: 1.5;
    color: #ffffff70;
    padding: 5px 0 0 0;
}

.duvidas .duvida p {
    font-family: 'Figtree';
    font-weight: 300;
    font-size: 14px;
    color: transparent;
    line-height: 0;
    padding: 0;
    transition: all 0.3s;
}

a.suporteWhatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    animation: pulsandoWhats 3s ease-in-out infinite;
    transition: all 0.3s;
    z-index: 100;
}

a.suporteWhatsapp:hover {
    opacity: 0.7;
}

a.suporteWhatsapp img {
    width: 70px;
    height: 70px;
}

@keyframes pulsandoWhats {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(110%);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    section.duvidas {
        padding: 40px 20px 80px 20px;
    }
}