*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#fff;
    color:#222;
}

.container{
    width:95%;
    max-width:1280px;
    margin:auto;
}

/* HEADER */

header{
    background:#fff;
    border-bottom:1px solid #eee;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:150px;
    width: auto;
    display: block;

}

nav ul{
    display:flex;
    gap:60px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#111;
    font-weight:700;
}

.btn-whatsapp{
    display:flex;
    align-items:center;
    padding:14px 22px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    position:fixed;
    right:25px;
    bottom:25px;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,211,102,.45);
}

.btn-whatsapp img{
    width:28px;
    height:28px;
}

    /* BANNER */

.banner{
    height:600px;

    background-image:
    linear-gradient(
    90deg,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.60) 35%,
    rgba(0,0,0,.20) 70%,
    rgba(0,0,0,.05) 100%
    ),
    url("../images/baneraco.webp");

    background-size:85% auto;
    background-position:right center;
    background-repeat:no-repeat;
    background-color:#111;

    display:flex;
    align-items:center;
}

.banner-content{
    max-width:1280px;
    width:100%;
    margin:auto;
    padding-left:80px;
    color:white;
}

.banner-content span{
    color:#2D8CFF;
    font-weight:bold;
    letter-spacing:2px;
}

.banner-content h1{
    color: #0B3D91;
    font-size:64px;
    margin:15px 0;
    line-height:1.1;
}

.banner-content p{
    font-size:22px;
    max-width:550px;
    line-height:1.5;
}

/* INTRO */

.intro{
    padding:80px 0 40px;
    text-align:center;
}

.intro h2{
    font-size:52px;
    background:#0B3D91 ;
    color:#fff;
    margin-bottom:15px;
}

.intro p{
    color:#666;
    font-size:18px;
}

/* PRODUTOS */

.produtos{
    padding-bottom:80px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.produto-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.produto-card:hover{
    transform:translateY(-8px);
}

.produto-card .img1{
    width:100%;
    height:300px;
    display:flex;
    
}

.produto-card img{
    width:100%;
    height:300px;
    object-fit:contain;

background:
    linear-gradient(
    to bottom,
    rgb(154,162,171),
    rgb(195,201,208),
    rgb(220,224,228),
    rgb(242,244,246)
);
}

.img-produto{
    position:relative;
    width: 100%;
    height: 100%;
}

.img-ilustrativa{
    position:absolute;
    bottom:12px;
    right:12px;

    background:rgba(0,0,0,.65);
    color:#fff;

    padding:4px 10px;
    border-radius:20px;

    font-size:12px;
    font-weight:600;

    backdrop-filter:blur(4px);
}

.produto-card h3{
    padding:0 20px 10px;
    color:#0B3D91;
    min-height:60px;
}

.produto-card p{
    padding:0 20px;
    color:#555;
    min-height:80px;
}

.produto-card li{
    margin-bottom: 15px;
    margin-left: 13px;
    text-align: left;
}

.produto-card a{
    display:block;
    margin:0 20px 20px;
    text-align:center;
    background:#0B3D91;
    color:white;
    text-decoration:none;
    padding:12px;
    border-radius:8px;
    font-weight:bold;
}

.produto-card{
    display:flex;
    flex-direction:column;
}

.produto-info{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
}

.produto-info ul{
    flex:1;
    margin-bottom:20px;
}

.btn-produto{
    margin-top:auto;
}

/* CTA */

.cta{
background:#081C45;
color:white;
text-align:center;
padding:80px 0;
}

.cta h2{
font-size:42px;
margin-bottom:15px;
}

.cta p{
margin-bottom:30px;
}

.btn-cta{
display:inline-block;
padding:15px 50px;
background:#2D8CFF;
color:white;
text-decoration:none;
border-radius:18px;
font-weight:bold;
}

/* FOOTER */

footer{
background:#06142F;
color:white;
text-align:center;
padding:40px 0;
}

/* RESPONSIVO */

/*==========================
    MENU HAMBÚRGUER
==========================*/

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    background:none;
    border:none;
    cursor:pointer;
    position:relative;
    z-index:2001;
}

.menu-toggle span{
    display:block;
    width:30px;
    height:3px;
    margin:6px auto;
    background:#0B3D91;
    border-radius:2px;
    transition:.35s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* Overlay */

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1500;
}

#overlay.active{
    opacity:1;
    visibility:visible;
}

/*==========================
    TABLET
==========================*/

@media(max-width:1100px){

.container{
    width:94%;
}

.cards{
    grid-template-columns:repeat(2,1fr);
}

.mvv-grid{
    grid-template-columns:1fr;
}

}


/*==========================
    CELULAR
==========================*/

@media(max-width:768px){

.container{
    width:92%;
}

/* HEADER */

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    padding:8px 0;
}

.logo img{
    height:90px;
}

.btn-whatsapp{
    display:none;
}

.menu-toggle{
    display:block;
}

/* MENU */

nav{

    position:fixed;

    top:0;
    right:-280px;

    width:260px;
    height:100vh;

    background:#fff;

    transition:.35s;

    padding-top:110px;

    box-shadow:-5px 0 20px rgba(0,0,0,.15);

    z-index:2000;

}

nav.active{

    right:0;

}

nav ul{

    display:flex;
    flex-direction:column;

    gap:0;

}

nav li{

    width:100%;

    border-bottom:1px solid #eee;

}

nav a{

    display:block;

    padding:18px 25px;

    font-size:18px;

}

/* BANNER */

.banner{

    height:420px;
    background-size: cover;
    text-align:left;

}

.banner-content{

    padding-left: 30px;

}

.banner-content h1{

    font-size:36px;

}

.banner-content p{

    font-size:18px;

}

.grid{
grid-template-columns:repeat(1,1fr);
}

.banner-content h1{
font-size:48px;
}

}

/* CTA */

.btn-cta{

    display:inline-block;

    padding:15px 30px;

    width:auto;

}


.modal-imagem{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);

    justify-content:center;
    align-items:center;
}

.modal-conteudo{

    padding:40px;

    border-radius:15px;

    background:
    linear-gradient(
        to bottom,
        rgb(154,162,171),
        rgb(195,201,208),
        rgb(220,224,228),
        rgb(242,244,246)
    );

    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.modal-conteudo img{
    max-width:700px;
    max-height:550px;
    width:auto;
    height:auto;
    display:block;
}

.fechar{
    position:absolute;
    top:20px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
}

}