*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat',sans-serif;
background:#0A0A0A;
color:#fff;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
background:#000;
position:fixed;
width:100%;
top:0;
z-index:1000;
}

.logo-nav{
width:120px;
}

.nav-links{
display:flex;
gap:20px;
list-style:none;
}

.nav-links a{
color:#fff;
text-decoration:none;
}

.menu-toggle{
display:none;
font-size:25px;
color:#00ff66;
cursor:pointer;
}

.search-box{
display:flex;
gap:5px;
}

.search-box input{
padding:5px;
border-radius:5px;
border:none;
}

/* HEADER */
header{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
url('../images/hero2.jpg');

background-size:cover;
background-position:center;
}

header img{
width:200px;
margin-bottom:20px;
}

h1{
color:#00ff66;
font-family:'Orbitron';
}

.btn{
margin-top:20px;
padding:12px 25px;
background:#00ff66;
color:#000;
border-radius:6px;
text-decoration:none;
}

/* SECCIONES */
section{
padding:80px 20px;
text-align:center;
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

section.show{
opacity:1;
transform:translateY(0);
}

.texto-largo{
max-width:800px;
margin:auto;
line-height:1.7;
}

/* CATÁLOGO */
.catalogo-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.item{
background:#1a1a1a;
padding:20px;
border-radius:10px;
}

.item img{
width:100%;
max-height:120px;
object-fit:contain;
margin-bottom:10px;
}

.item h3{
color:#00ff66;
}

.btn-small{
display:inline-block;
margin-top:10px;
padding:6px 12px;
background:#00ff66;
color:#000;
border-radius:6px;
text-decoration:none;
}

/* BOTONES SOCIALES */
.social-buttons{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
}

.social-buttons img{
width:36px;
height:36px;
border-radius:50%;
background:#fff;
padding:6px;
box-shadow:0 0 10px rgba(0,0,0,0.3);
transition:0.25s;
}

.social-buttons img:hover{
transform:scale(1.1);
box-shadow:0 0 12px #00ff66;
}

/* RESPONSIVE */
@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
background:#000;
position:absolute;
top:60px;
right:0;
width:200px;
padding:20px;
}

.nav-links.active{
display:flex;
}

.search-box{
display:none;
}

.catalogo-grid{
grid-template-columns:1fr;
}

}