/*=========================================
HERO
=========================================*/

.faq{

    background:#f4f8f9;
    padding-bottom: 50px;
}

.hero-utilidade{

    background:
    linear-gradient(rgba(19,35,59,.55),rgba(19,35,59,.55)),
    url("../Imagens/teste1.png");
    
    background-size:cover;
    background-position:center;
    height:65vh;

}

.titulo{

    text-align:center;
    max-width:760px;
    margin:0 auto 20px;
    color: #16c2b6;

}


/*=========================================
PESQUISA
=========================================*/

.pesquisa{

    padding:40px 0;

    background:#f7f9fb;

}

.pesquisa input{

    width:100%;

    max-width:700px;

    display:block;

    margin:auto;

    padding:18px 25px;

    border:none;

    border-radius:50px;

    font-size:17px;

    font-family:'Inter',sans-serif;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    outline:none;

}

.pesquisa input:focus{

    box-shadow:0 0 0 4px rgba(103,203,191,.20);

}

/*=========================================
CONTATO
=========================================*/

.contato-utilidade{

    padding:55px 0;

    background:#f8fbfc;

}

.contato-card{

    max-width:640px;

    margin:auto;

    text-align:center;

    background:#fff;

    border-radius:20px;

    padding:35px 40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.icone-contato{

    font-size:38px;

    margin-bottom:12px;

    line-height:1;

}

.contato-card h2{

    font-size:32px;

    color:#13233b;

    margin-bottom:18px;

    font-weight:800;

    line-height:1.2;

}

.contato-card p{

    max-width:470px;

    margin:0 auto 28px;

    color:#666;

    font-size:16px;

    line-height:1.75;

}

.botoes{

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

}

.btn-contato{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:#67cbbf;

    color:#fff;

    min-width:175px;

    padding:12px 22px;

    border-radius:40px;

    font-size:16px;

    font-weight:600;

    transition:.30s;

}

.btn-contato:hover{

    background:#56b8ad;

    transform:translateY(-3px);

}

.btn-whatsapp{

    background:#25D366;

}

.btn-whatsapp:hover{

    background:#1fb759;

}


/*=========================================
RODAPÉ
=========================================*/

.agradecimento{

    padding:90px 0;

    background:#13233b;

    color:#fff;

    text-align:center;

}

.agradecimento h2{

    font-size:48px;

    margin-bottom:25px;

}

.agradecimento p{

    max-width:800px;

    margin:auto;

    line-height:1.8;

    font-size:18px;

}


/*=========================================
RESPONSIVO
=========================================*/

@media(max-width:900px){

    .accordion-header{

        font-size:19px;

        padding:22px 25px;

    }

    .accordion-content p{

        padding:0 25px 20px;

    }

    .accordion-content ul{

        padding:0 25px 25px 45px;

    }

    .contato-card{

        padding:40px 30px;

    }

    .contato-card h2{

        font-size:36px;

    }

}

@media(max-width:600px){

    .accordion-header{

        font-size:17px;

    }

    .icone{

        font-size:24px;

    }

    .contato-card h2{

        font-size:30px;

    }

    .agradecimento h2{

        font-size:34px;

    }

    .botoes{

        flex-direction:column;

    }

    .btn-contato{

        width:100%;

    }

}