/* ===============================
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:18px 0;
}

.logo img{
height:70px;
}

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

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

nav a:hover{
color:#6366f1;
}

/* ===============================
WHATSAPP FLOAT
=============================== */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
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;
transition:0.3s;
}

.whatsapp-float img{
width:32px;
height:32px;
}

.whatsapp-float:hover{
transform:scale(1.1);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* ===============================
BOTONES
=============================== */

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

.btn-primary:hover{
background:#4f46e5;
}

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

.btn-secondary:hover{
background:#6366f1;
color:white;
}

/* ===============================
HERO
=============================== */

.hero{
padding:120px 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;
flex-wrap:wrap;
}

.hero-text{
flex:1;
min-width:300px;
}

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

.hero-text h1 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{
flex:1;
text-align:center;
}

.hero-image img{
max-width:350px;
opacity:0.95;
}

/* ===============================
SECCION PRODUCTOS
=============================== */

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

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

.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;
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

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

.product-card p{
color:#64748b;
}

/* ===============================
SECCION EMPRESAS / CLIENTES
=============================== */

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

.clientes h2{
margin-bottom:40px;
}

.clientes-logos{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
opacity:0.6;
}

/* ===============================
CONTACTO
=============================== */

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

.contacto h2{
font-size:34px;
margin-bottom:20px;
}

.contacto p{
margin-bottom:30px;
color:#64748b;
}

/* ===============================
FOOTER
=============================== */

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

footer p{
font-size:14px;
}

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

@media(max-width:900px){

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

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

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

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

}

@media(max-width:600px){

nav ul{
display:none;
}

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

.hero{
padding:80px 20px;
}



}