/* SACRAMENTOS (BATISMO, CATEQUESE, CRISMA) */

.faq{
    min-height: 300px;
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.faq h2{
    color: var(--color-brown);
}

.texto-faq{
    margin-bottom: 30px;
}

.container-faq{
    cursor: pointer;
}

.question-faq{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    background-color: var(--color-brown-light);
    padding: 15px;
    border-radius: 10px;
}

.question-faq h4{
    padding: 5px;
    font-size: 20px;
    text-align: left;
}

.answer-faq{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease-in-out;
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.container-faq.active .answer-faq{
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.fa-angle-down{
    transform: rotate(180deg);
}

.fa-angle-down{
    color: var(--color-brown);
    transition: transform .5s ease-in;
}

@keyframes fade{
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

.orcamento-faq{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 80px;
}

.btnSlogan-orcamento{
    display: inline-block;
    color: var(--color-background);
    background-color: var(--color-logo);
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px;
    border-radius: 15px;
}

.btnSlogan-orcamento:hover{
    text-decoration: none;
    color: var(--color-background);
    background-color: var(--color-green-medium);
    transition: 1s;
}



/* BATISMO */

.baptism{
    margin-top: 100px;
    margin-bottom: 150px;
}

.baptism h2{
    margin-bottom: 60px;
    color: var(--color-brown);
}

.baptism-text p{
    line-height: 1.7 !important;
    text-align: justify;
}

.btn-success {
    background-color: var(--color-red);
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 50px !important;
}

.btn-success:hover {
    background-color: var(--color-brown-light);
    border: 1px solid var(--color-red);
    color: var(--color-red);
    transform: scale(1.05);
    transition: 1s;
}

.baptism-important p{
    font-weight:normal;
}

.baptism-important{
    margin-top: 80px;
    margin-bottom: 60px;
}

.baptism-important-info{
    margin-top: 60px;
}

.baptism-important-info h4{
    color: var(--color-red);
}

.baptism-important-info p{
    margin-top: 30px;
    line-height: 1.7 !important;
}


/* BENEFÍCIOS */

.benefits{
    margin-top: 40px;
    margin-bottom: 60px;
}

.benefits h2{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.benefits-description{
    text-align: justify;
}

.benefits-icon{
    font-size: 20px;
    color: var(--color-background);
    width: 30px;
    height: 30px;
}

.benefits-text{
    margin-bottom: 50px;
}