/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
:root{
--primary:#22d5c0;
--primary-dark:#17b8a7;
--dark:#121212;
--gray:#4a4a4a;
--light:#f7f8f8;
--border:#eaeaea;
}
body{
font-family:'Inter',sans-serif;
background:#fff;
color:#121212;
overflow-x:hidden;
line-height:1.6;
padding-top:90px;
}

/* HEADER */
header{
position:fixed;
top:0;left:0;
width:100%;
height:90px;
background:rgba(255,255,255,.96);
backdrop-filter:blur(10px);
display:flex;
align-items:center;
justify-content:space-between;
padding:0 5%;
z-index:1000;
border-bottom:1px solid var(--border);
}
.logo-area img{height:60px;width:auto;display:block;max-width:100%;}

#menu{
display:flex;
align-items:center;
gap:25px;
}
#menu a{
text-decoration:none;
color:#121212;
font-weight:500;
font-size:16px;
transition:.3s;
}
#menu a:hover{color:var(--primary-dark);}

.socials{
display:flex;
align-items:center;
gap:15px;
}
.socials a{
text-decoration:none;
color:#121212;
font-size:15px;
transition:.3s;
}
.socials a:hover{color:var(--primary-dark);}

.hamburger{display:none;flex-direction:column;gap:6px;cursor:pointer;}
.hamburger span{
width:28px;height:3px;background:#121212;border-radius:3px;
}

/* HERO */
.hero{
position:relative;
min-height:calc(100vh - 90px);
overflow:hidden;
}
.hero img{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
inset:0;
}
.overlay{
position:absolute;
inset:0;
background:linear-gradient(to right,rgba(255,255,255,.25),rgba(255,255,255,.08));
display:flex;
align-items:center;
padding:8%;
}
.hero-content{
max-width:650px;
position:relative;
z-index:2;
}
.hero-content h1{
font-family:'Poppins',sans-serif;
font-size:4rem;
line-height:1.1;
margin-bottom:1.5rem;
}
.hero-content p{
font-size:1.1rem;
color:#4a4a4a;
margin-bottom:2rem;
}

/* BOTONES */
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap;}
.btn-primary,.btn-secondary{
padding:16px 32px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}
.btn-primary{
background:var(--primary);
color:#121212;
}
.btn-primary:hover{
background:var(--primary-dark);
transform:translateY(-2px);
}
.btn-secondary{
border:1px solid #121212;
color:#121212;
}
.btn-secondary:hover{
background:#121212;
color:#fff;
}

/* SECCIONES */
section{padding:100px 7%;}
section h2{
font-family:'Poppins',sans-serif;
font-size:3rem;
margin-bottom:3rem;
text-align:center;
}

/* CATEGORIAS */
.categoria-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:2rem;
}
.categoria-card{
background:#f7f8f8;
min-height:220px;
border-radius:24px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#121212;
font-size:1.5rem;
font-family:'Poppins',sans-serif;
font-weight:600;
transition:.3s;
border:1px solid var(--border);
text-align:center;
padding:20px;
}
.categoria-card:hover{
background:#22d5c0;
transform:translateY(-6px);
}

/* BENEFICIOS */
.beneficios{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:2rem;
}
.beneficios div{
background:#fff;
padding:2rem;
border-radius:24px;
border:1px solid var(--border);
}

/* PAGINAS PRODUCTOS */
.page-title{text-align:center;padding:40px 20px;}
.page-title h1{font-size:48px;margin-bottom:10px;font-family:'Poppins',sans-serif;}
.page-title p{color:#666;}

.productos-grid{
padding:40px 7%;
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}
.producto-card{
position:relative;
overflow:hidden;
border-radius:22px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.producto-card img{
width:100%;
height:auto;
display:block;
transition:.6s;
}
.producto-card:hover img{transform:scale(1.05);}

.producto-info{
position:absolute;
left:0;right:0;bottom:0;
padding:20px 25px;
background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.35),transparent);
}
.producto-info h3{
font-family:'Cormorant Garamond',serif;
font-size:28px;
font-weight:600;
line-height:1.1;
margin-bottom:8px;
color:#F5F1E8;
}
.btn-producto{
display:inline-block;
color:#F5F1E8;
text-decoration:none;
font-size:12px;
font-weight:500;
letter-spacing:2px;
text-transform:uppercase;
}

/* FOOTER */
footer,.footer-minimal{
background:#121212;
color:#fff;
text-align:center;
padding:20px;
}

/* TABLET */
@media (max-width:992px){
.socials{display:none;}
.hamburger{display:flex;}

#menu{
display:none;
position:absolute;
top:90px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
padding:20px;
gap:15px;
border-top:1px solid #e5e7eb;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
#menu.active{display:flex;}

.hero-content h1{font-size:3rem;}
.categoria-grid{grid-template-columns:repeat(2,1fr);}
.beneficios{grid-template-columns:1fr;}
}

/* MOVIL */
@media (max-width:768px){

body{
padding-top:80px;
}

header{
height:80px;
}

.logo-area img{
height:40px;
}

.hero{
min-height:auto;
}

.hero img{
display:block;
position:relative;
width:100%;
height:auto;
object-fit:cover;
margin-top:20px;
border-radius:20px;
}

.overlay{
position:relative;
display:block;
background:none;
padding:20px;
}

.hero-content{
max-width:100%;
}

.hero-content h1{
font-size:1.8rem;
line-height:1.1;
}

.hero-content p{
font-size:.95rem;
}

.hero-buttons{
flex-direction:column;
align-items:stretch;
width:100%;
}

.hero-buttons a{
text-align:center;
}

.categoria-grid,
.beneficios{
grid-template-columns:1fr;
}

section{
padding:70px 20px;
}

section h2{
font-size:2rem;
}

.page-title h1{
font-size:32px;
}

.productos-grid{
padding:20px;
grid-template-columns:1fr;
}

.producto-info h3{
font-size:22px;
}
}
/* TARJETAS DE PRODUCTOS MOVIL */

.producto-card img{
height:420px;
object-fit:cover;
}

.producto-info{
padding:15px 20px;
}

.producto-info h3{
font-size:16px;
line-height:1.1;
margin-bottom:6px;
max-width:70%;
}

.btn-producto{
font-size:11px;
letter-spacing:3px;
}
