*{
    margin: 0;
    padding: 0;
}
.main{
    width:100%;
    background:url(./fundo\ new.jpeg);
    background-position: center;
    background-size: cover;
    height: 109vh;
}
img{
    width: 170px;
    height: 70px;
    
}

.footer-text{
    width: 900px;
    margin: 50px auto;
    padding: 25px 35px;
    background: linear-gradient(90deg, rgb(20,20,68), rgb(13,13,61));
    border-left: 6px solid rgb(235,94,0);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.20);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    color: #ffffff;
    line-height: 30px;
    text-align: center;
}

/* ============================
   Canais de Denúncia
============================ */

.contact-section{
    width: 1000px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card{
    width: 420px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border-top: 5px solid rgb(235,94,0);
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    transition: .4s ease;
}

.contact-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.contact-icon{
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgb(20,20,68);
    color: white;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(20,20,68);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card p{
    font-family: Arial, Helvetica, sans-serif;
    color: #555;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
}

.contact-card a{
    display: inline-block;
    background: rgb(20,20,68);
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    transition: .4s;
}

.contact-card a:hover{
    background: rgb(235,94,0);
}

/* Responsivo */

@media(max-width:1000px){

    .contact-section{
        width: 95%;
    }

    .contact-card{
        width: 100%;
    }

}