@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');


*{
    margin: 0;
    padding: 0;
}


.sobre{
    color: #DA0707;
    background-color: #feeaea;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.destaque{
    color: #da0707;
}

.container1{
    text-align: center;
    margin-top: 20px;
}

.container1 h2{
    font-size: 55px;
    font-weight: bold;
}

.container1 p{
    margin-top: 40px;
    color: #000000;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
}

.cards{
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
}

.card{
    background-color: rgba(218,7,7,0.08);
    padding: 45px;
    border-radius: 15px;
    width: 290px;
    text-align: center;
    margin-bottom: 30px;

        transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-20px);
}

.card h3{
    color: #da0707;
    font-size: 30px;
}

.card p{
    margin-top: 10px;
    font-size: 19px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 35px;
    cursor: pointer;
}

.logo-area img{
    width: 50px;
    height: auto;
}



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

    .sobre {
        display: inline-block;
        margin: 20px auto;
        text-align: center;
        
        padding: 6px 14px;
        border-radius: 20px;
    }

    .texto {
        text-align: center; 
    }



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

    .container1 p {
        font-size: 16px;
        padding: 0 15px;
        margin-top: 20px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .card {
        width: 90%;
        max-width: 300px;
        padding: 25px;
    }

    .card h3 {
        font-size: 24px;
    }

    .card p {
        font-size: 16px;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1px !important;
    padding-right: 40px;
}

.footer-top {
    background-color: #892e2f;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 70px 0;
}

.footer-left {
    max-width: 400px;

}

.footer-left h2 {
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 30px;
}

.footer-left p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 100;
    font-size: 19px;
}

.footer-right {
    margin-right: 130px;
}

.footer-right h3 {
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 26px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    gap: 160px;
}

.footer-links a {
    text-decoration: none;
    color: #d9d9d9;
    margin-bottom: 26px;
    cursor: pointer;
    font-weight: 100;
    font-size: 18px;
}

.footer-bottom {
    background-color: #d9d9d9;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    font-size: 14px;
    color: #000000;
}

.logo-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    margin-bottom: 30px;
    flex-direction: row;
}

.logo-title img {
    width: 90px;
    height: 90px;
}

.instagram {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.instagram div {
    display: flex;
    flex-direction: column;
}

.instagram img {
    width: 50px;
    height: 50px;
}

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

    .container h2 {
        font-size: 42px;
    }

    .container p {
        font-size: 18px;
    }

    .cards {
        gap: 30px;
        flex-wrap: wrap;
    }

    .card {
        width: 250px;
    }
}
