/* ==========================================
   BANNER
========================================== */

.banner-parceiros {

    position: relative;

    min-height: 300px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .78)
        ),
        url('../imagens/banner-parceiros.jpg')
        center center / cover no-repeat;

    border-left: 25px solid #fdbb00;

}


.banner-parceiros-conteudo {

    color: #fff;

}


.banner-parceiros-conteudo span {

    color: #fdbb00;

    font-size: 14px;

    font-weight: bold;

}


.banner-parceiros-conteudo h1 {

    margin: 15px 0;

    font-size: 38px;

    font-weight: 700;

}


.banner-parceiros-conteudo p {

    max-width: 400px;

    margin-top: 15px;

    font-size: 16px;

    line-height: 1.6;

}


.linha-amarela {

    width: 55px;

    height: 3px;

    background: #fdbb00;

}


/* ==========================================
   INTRODUÇÃO
========================================== */

.introducao-parceiros {

    padding: 60px 0 40px;

    text-align: center;

    background: #fff;

}


.subtitulo-secao {

    color: #fdbb00;

    font-size: 13px;

    font-weight: bold;

}


.introducao-parceiros h2 {

    margin: 12px 0 20px;

    color: #222;

    font-size: 28px;

    font-weight: 700;

}


.linha-centro {

    width: 55px;

    height: 3px;

    margin: 0 auto 20px;

    background: #fdbb00;

}


.introducao-parceiros p {

    color: #777;

    font-size: 15px;

    line-height: 1.7;

}


/* ==========================================
   LISTA DE PARCEIROS
========================================== */

.lista-parceiros {

    padding: 20px 0 60px;

    background: #f7f7f7;

}


.card-parceiro {

    min-height: 280px;

    margin-bottom: 30px;

    padding: 25px 20px;

    background: #fff;

    border: 1px solid #eeeeee;

    text-align: center;

    transition: all .3s ease;

}


.card-parceiro:hover {

    transform: translateY(-5px);

    border-color: #fdbb00;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

}


/* LOGO */

.logo-parceiro {

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.logo-parceiro img {

    max-width: 180px;

    max-height: 85px;

}


/* LINHA */

.linha-card {

    width: 40px;

    height: 2px;

    margin: 10px auto 18px;

    background: #fdbb00;

}


/* NOME */

.card-parceiro h3 {

    margin: 0 0 10px;

    color: #222;

    font-size: 16px;

    font-weight: 700;

}


/* DESCRIÇÃO */

.card-parceiro p {

    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.6;

}


/* ==========================================
   CTA
========================================== */

.cta-parceiro {

    padding: 25px 0;

    background: #f7f7f7;

}


.cta-parceiro-conteudo {

    display: flex;

    align-items: center;

    padding: 25px;

    background: #fff;

    border: 1px solid #eeeeee;

}


/* ÍCONE */

.cta-icone {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 80px;

    height: 80px;

    margin-right: 25px;

    background: #222;

}


.cta-icone i {

    color: #fdbb00;

    font-size: 38px;

}


/* TEXTO */

.cta-texto {

    flex: 1;

}


.cta-texto h2 {

    margin: 0 0 8px;

    color: #222;

    font-size: 22px;

}


.cta-texto h2 span {

    color: #fdbb00;

}


.cta-texto p {

    margin: 0;

    color: #777;

    font-size: 14px;

}


/* BOTÃO */

.cta-botao a {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 14px 20px;

    border: 1px solid #fdbb00;

    color: #333;

    font-size: 12px;

    font-weight: bold;

    text-decoration: none;

    transition: .3s;

}


.cta-botao a i {

    color: #fdbb00;

}


.cta-botao a:hover {

    background: #fdbb00;

    color: #fff;

}


.cta-botao a:hover i {

    color: #fff;

}