/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter', sans-serif;
background:#f8fafc;
color:#1e293b;
line-height:1.6;
}

/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HEADER */

header{
background:white;
border-bottom:1px solid #e2e8f0;
position:sticky;
top:0;
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
}

.logo img{
height:60px;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#334155;
font-weight:500;
}

/* BOTONES */

.btn-primary{
background:#6366f1;
color:white;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
border:1px solid #6366f1;
color:#6366f1;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

/* HERO */

.hero{
padding:110px 20px;
background:linear-gradient(135deg,#0f172a,#1e293b);
color:white;
}

.hero-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:48px;
margin-bottom:20px;
}

.hero-text span{
color:#8b5cf6;
}

.hero-text p{
font-size:18px;
color:#cbd5e1;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:40px;
}

.hero-stats{
display:flex;
gap:40px;
}

.hero-stats h3{
font-size:24px;
}

.hero-stats p{
color:#94a3b8;
}

.hero-image img{
max-width:340px;
}

/* PRODUCTOS */

.productos{
padding:90px 20px;
background:white;
}

.productos h2{
text-align:center;
font-size:34px;
margin-bottom:50px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.product-card{
background:#f8fafc;
padding:35px;
border-radius:12px;
border:1px solid #e2e8f0;
}

.product-card h3{
margin-bottom:15px;
}

/* CLIENTES */

.clientes{
padding:80px 20px;
background:#f1f5f9;
text-align:center;
}

/* CONTACTO */

.contacto{
padding:90px 20px;
background:white;
text-align:center;
}

.contacto p{
margin-bottom:30px;
}

/* FOOTER */

footer{
background:#0f172a;
color:#cbd5e1;
padding:35px 20px;
text-align:center;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
z-index:999;
}

.whatsapp-float img{
width:30px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-stats{
justify-content:center;
flex-wrap:wrap;
}

.hero-text h1{
font-size:38px;
}

.hero-image img{
max-width:220px;
}

}

@media(max-width:600px){

.logo img{
height:45px;
}

nav ul{
gap:15px;
font-size:14px;
}

.hero{
padding:70px 20px;
}

.hero-text h1{
font-size:30px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.hero-stats{
flex-direction:column;
gap:15px;
}

.productos h2{
font-size:28px;
}

}

/* MENU HAMBURGUESA */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.menu-toggle span{
width:25px;
height:3px;
background:#1e293b;
display:block;
}

/* MOBILE MENU */

@media(max-width:768px){

.menu-toggle{
display:flex;
}

nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
border-top:1px solid #e2e8f0;
display:none;
}

nav.active{
display:block;
}

nav ul{
flex-direction:column;
padding:20px;
gap:15px;
}

}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
z-index:999;
transition:0.3s;
}

.whatsapp-float svg{
width:30px;
height:30px;
}

.whatsapp-float:hover{
transform:scale(1.1);
}