/* © 2026 Koizumi Electronics - Uso no autorizado prohibido, todos los derechos reservados. */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  height:100vh;
  overflow:hidden;
  background:#ffffff;
}

/* NAV */
.nav{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  z-index:100;
}

.nav-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-icon{
  width:28px;
}

.nav-text{
  font-size:20px;
  font-weight:600;
}

.nav-text span{
  color:#00cfe8;
}

.menu{
  display:flex;
  gap:20px;
  list-style:none;
}

.menu li{
  cursor:pointer;
  font-size:14px;
}

/* MOBILE */
#hamburger{
  display:none;
  font-size:22px;
  cursor:pointer;
}

.mobile-menu{
  position:fixed;
  top:60px;
  right:20px;
  background:#fff;
  border-radius:10px;
  padding:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu ul{
  list-style:none;
}

.mobile-menu li{
  padding:10px 0;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  overflow:hidden;
}

/* FONDO */
.bg-shape{
  position:absolute;
  width:150%;
  height:150%;
  transform:rotate(45deg);
}

.shape1{
  background:linear-gradient(135deg,#00cfe8,#00a8c5);
  top:-60%;
  left:-40%;
}

.shape2{
  background:#f5fbff;
  bottom:-60%;
  right:-40%;
}

/* CONTENIDO */
.hero-content{
  text-align:center;
  z-index:2;
}

.hero-logo{
  width:160px;
  margin-bottom:20px;
  filter:drop-shadow(0 0 10px rgba(0,200,255,0.4));
}

.rotator{
  font-size:18px;
  margin-bottom:10px;
}

.rotator span{
  color:#00cfe8;
  font-weight:600;
}

h1{
  font-size:34px;
  max-width:600px;
}

/* BOTONES */
.buttons{
  margin-top:25px;
  display:flex;
  gap:15px;
  justify-content:center;
}

.buttons button{
  padding:12px 22px;
  border:none;
  background:#00cfe8;
  color:#000;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.buttons button:hover{
  transform:scale(1.05);
}

/* FOOTER */
.footer{
  position:absolute;
  bottom:10px;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 30px;
  font-size:12px;
}

.footer-left img{
  width:30px;
}

/* RESPONSIVE */
@media(max-width:900px){

  .menu{
    display:none;
  }

  #hamburger{
    display:block;
  }

  .hero-logo{
    width:120px;
  }

  h1{
    font-size:26px;
  }

  .buttons{
    flex-direction:column;
  }

  .buttons button{
    width:200px;
  }
}

.hidden{
  display:none;
}