/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    color:#13233b;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ==========================
   HERO
========================== */

.hero-convenios{

    height:100vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../Imagens/teste1.png");

    background-size:cover;
    background-position:center;
}

.hero-content{

    width:90%;
    max-width:1300px;
    margin:auto;

    color:#fff;
}

.hero-content span{

    color:#67cbbf;
    font-weight:700;
    letter-spacing:2px;

}

.hero-content h1{

    font-size:64px;
    max-width:850px;

    margin:20px 0;

}

.hero-content p{

    font-size:20px;
    line-height:1.8;
    max-width:650px;

}

/* ==========================
   CONVÊNIOS
========================== */

.lista-convenios{

    padding:100px 0;

    background:#f8f8f8;

}

.categoria-convenio{

    margin-bottom:100px;

}

.categoria-convenio:last-child{
    margin-bottom:0;
}

.categoria{

    display:inline-block;

    color:#67cbbf;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.categoria-convenio h2{

    font-size:46px;

    color:#13233b;

    margin-bottom:50px;

}

/* GRID */

.grid-convenios{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(220px,220px));

    justify-content:center;

    gap:30px;

}

/* CARD */

.convenio-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.convenio-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.convenio-card img{

    width:160px;
    height:90px;

    object-fit:contain;

    margin-bottom:20px;

}

.convenio-card p{

    color:#13233b;

    font-size:18px;

    font-weight:600;

}

/* ==========================
   INFORMAÇÕES
========================== */

.informacoes{

    padding:100px 0;

}

.informacoes h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.info-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.info-grid div{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.info-grid h3{

    color:#67cbbf;

    margin-bottom:15px;

}

.info-grid p{

    color:#666;

    line-height:1.8;

}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width:900px){

    .hero-content h1{
        font-size:46px;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .grid-convenios{

        grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    }

}

@media (max-width:600px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:18px;
    }

}