*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

header{
    background:linear-gradient(90deg,#0b3d91,#1f6feb);
    color:white;
    text-align:center;
    padding:40px 20px;
}

header h1{
    font-size:42px;
    margin-bottom:15px;
}

header p{
    font-size:18px;
}

/* Seção de apresentação */

.apresentacao{
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 25px;
    text-align: center;

    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border-left: 6px solid #0b3d91;
}

.apresentacao strong{
    color: #0b3d91;
    font-weight: 700;
}

.produtos{

    max-width:1300px;
    margin:40px auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

    padding:20px;
}

.card{

    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.15);
    transition:.3s;
}

.card:hover{

    transform:translateY(-8px);
}

.card img{

    width:100%;
    height:240px;
    object-fit:contain;
}

.card h3{

    padding:20px;
    text-align:center;
    color:#222;
    min-height:70px;
}

.card a{

    text-decoration:none;
}

.card button{

    width:90%;
    margin:0 5% 20px;

    padding:15px;

    border:none;

    background:#007bff;

    color:white;

    font-size:17px;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;
}

.card button:hover{

    background:#0056b3;
}

footer{

    background:#0b3d91;

    color:white;

    text-align:center;

    padding:25px;

    margin-top:40px;
}

.hero{

    height:90vh;

    background:url("imagens/hero.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:800px;

    text-align:center;

    color:white;

    padding:20px;

}

.hero h1{

    font-size:60px;

    margin-bottom:20px;

    line-height:1.2;

}

.hero p{

    font-size:23px;

    line-height:1.7;

    margin-bottom:35px;

}

.hero a{

    display:inline-block;

    padding:18px 40px;

    background:#ffb703;

    color:#222;

    text-decoration:none;

    font-size:22px;

    font-weight:bold;

    border-radius:50px;

    transition:.3s;

}

.hero a:hover{

    background:#ffd166;

    transform:scale(1.05);

}

.beneficios{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:40px;

    color:#fff;

    font-size:18px;

    font-weight:bold;

}