section {
    display: flex;
    flex-direction: column;
}

/*Seção 1*/

.sec-1 {
    display: flex;
    justify-content: space-evenly;
    background-color: #F8F9FA;
    padding: 40px 40px 30px 40px;
}

.container-sec-1 {
    align-content: center;
    padding: 25px;
    max-width: 500px;
}

.img-sec {
    max-width: 350px;
}


.title-sec-1 {
    font-size: 2.5rem;
}

.p-sec-1 {
    padding-top: 30px;
    padding-bottom: 40px;
}

.button-sec-1 {
    padding: 10px 16px;
    background-color: #1e397e;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.button-sec-1:hover {
    background-color: #1e397ed3;
}

/*Seção 2*/

.sec-2 {
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    padding: 50px;
    flex-wrap: wrap;
}

.title-sec-2 {
    font-size: 1.5rem;
    padding-top: 10px;
    padding-bottom: 15px;
    flex-grow: 1;
    flex-shrink: 1;
}

.container-sec-2 {
    padding: 25px;
    max-width: 500px;
    min-width: auto;
}

li {
    list-style: none;
    padding-bottom: 10px;
}

.img-father {
    padding: auto;
}

@media (max-width: 800px) {
    .sec-1 {
        flex-direction: column;
        text-align: center;
        padding: auto;
    }

    .title-sec-1 {
        font-size: 2rem;
    }

    .sec-2 {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px; 
    }

    .title-sec-2 {
        text-align: center; 
    }

   .img-father {
    display: flex;
    justify-content: center;
   }

    .title-sec-3, .title-sec-4 {
        font-size: 1.8rem;
    }

    .sec-3, .sec-4 {
        padding: 60px 20px;
    }

    .container-sec-2,
    .container-sec-1 {
        margin: auto;
    }
}

/*Seção 3*/

.sec-3 {
    background-color: #1e397e;
    padding: 60px 0;
    text-align: center;
}

.title-sec-3 {
    font-size: 2rem;
    color: white;
    padding-bottom: 20px;
}

.p-sec-3 {
    max-width: 700px;
    color: white;
    margin: auto;
}

/*Seção 4*/

.sec-4 {
    padding: 60px;
    background-color: #f8f9fa;
}

.container-sec-4 {
    text-align: center;
}

.title-sec-4 {
    font-size: 2.2rem;
    padding-bottom: 5px;
}

.p-sec-4 {
    padding: 10px;
    margin-bottom: 20px;
}

.button-sec-4 {
    display: inline-flex;
    align-items: center;
    background-color: #26D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-sec-4:hover {
    transform: scale(1.05);
}

.wpp-icon {
    max-width: 26px;
    height: auto;
}