:root{
--azul:#0A1F44;
--azul2:#112654;
--verde:#22a060;
--verde-hover:#1a7a4a;
--cinza:#f5f7fa;
--texto:#333;
--texto2:#555;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#fff;
color:var(--texto);
}

/* HERO */
.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,var(--azul),var(--azul2));
color:white;
padding:20px;
}

.logo{
width:200px;
margin-bottom:20px;
}

.hero h1{
font-size:40px;
max-width:700px;
}

.hero p{
margin-top:15px;
opacity:0.9;
}

/* BOTÃO */
.btn{
margin-top:25px;
padding:14px 30px;
background:var(--verde);
color:white;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
display:inline-block;
}

.btn:hover{
background:var(--verde-hover);
}

/* SEÇÕES */
.section{
padding:80px 20px;
text-align:center;
}

.section.dark{
background:var(--cinza);
}

.container{
max-width:1100px;
margin:auto;
}

.title{
font-size:32px;
margin-bottom:25px;
color:var(--azul);
}

.section p{
max-width:700px;
margin:10px auto;
color:var(--texto2);
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* CARD PREMIUM */
.card{
display:flex;
flex-direction:column;
align-items:center;
justify-content:space-between;
text-align:center;

background:#ffffff;
padding:25px;
border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:all 0.3s ease;
overflow:hidden; /* IMPORTANTE para zoom não vazar */
}

/* DESCRIÇÃO DOS PRODUTOS */
.card .desc{
margin-top:10px;
font-size:14px;
color:var(--texto2);
line-height:1.5;
max-width:260px;
}

/* EFEITO AO PASSAR O MOUSE NO CARD */
.card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* CONTAINER DA IMAGEM */
.card img{
width:100%;
height:220px;              /* ALTURA PADRÃO */
object-fit:contain;        /* NÃO DISTORCE */

background:#ffffff;
padding:15px;
border-radius:10px;

transition:transform 0.4s ease; /* SUAVIDADE DO ZOOM */
}

/* ZOOM NA IMAGEM */
.card:hover img{
transform:scale(1.08);
}

/* TITULO DO PRODUTO */
.card h3{
margin-top:10px;
font-size:18px;
color:var(--azul);
}

/* CTA */
.cta{
background:linear-gradient(135deg,var(--azul),var(--azul2));
color:white;
padding:100px 20px;
text-align:center;
}

.contato{
margin-top:20px;
}

/* WHATSAPP */
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px;
border-radius:50%;
text-decoration:none;
}

/* ANIMAÇÃO (SEGURO) */
.fade-in{
opacity:1; /* SEM BUG */
transform:none;
}