@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.container-titulo {
    display: flex;
    justify-content: center;
    margin: 10px 0 30px;
}

.titulo {
    font-size: 50px;
    text-align: center;
}

.titulo span {
    color: #DA0707;
}


.box {
    background-color: #FEEAEA;
    border-radius: 20px;
    padding: 20px;
    width: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: 0.2s;
}


.box:hover {
    transform: translateY(-5px);
}

.box img {
    width: 80px;
    margin-bottom: 10px;
}


.box h3 {
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.box p {
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.container-box {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.box {
    background-color: #FEEAEA;
    border-radius: 20px;
    padding: 20px;
    width: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    text-align: center;

    transition: 0.2s;
}

.box:hover {
    transform: translateY(-5px);
}

.box img {
    width: 80px;
    margin-bottom: 10px;
}

.box h3 {
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.box p {
    color: rgb(0, 0, 0);
    font-size: 14px;
    min-height: 40px;
}

.box-2 {
    background-color: #FEEAEA;
    border-radius: 20px;
    padding: 40px;
    width: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin: 40px auto;
    transition: 0.2s;
}

.box-2:hover {
    transform: translateY(-5px);
}

.box-2 h2 {
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    font-size: 24px;
}

.box-2 p {
    color: rgb(0, 0, 0);
    font-size: 16px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    main {
        margin: 10px;
    }

    .plata {
        display: block;
        text-align: center;
        margin: 0 auto 15px;
        width: fit-content;
        padding: 5px 12px;
    }

    .titulo {
        font-size: 32px;
        padding: 0 10px;
    }

    .container-box {
        gap: 20px;
    }

    .box {
        width: 90%;
        max-width: 280px;
        padding: 20px;
    }

    .box img {
        width: 60px;
    }

    .box h3 {
        font-size: 18px;
    }

    .box p {
        font-size: 14px;
    }

    .box-2 {
        width: 90%;
        padding: 25px;
    }

    .box-2 h2 {
        font-size: 20px;
    }

    .box-2 p {
        font-size: 14px;
    }
}


/* ================= (1024px) ================= */
@media (max-width: 1024px) {

    main {
        margin-left: 20px;
        margin-right: 20px;
    }

    .titulo {
        font-size: 40px;
    }

    .container-box {
        gap: 30px;
    }

    .box {
        width: 220px;
    }

    .box-2 {
        width: 80%;
    }
}