
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body{
  background: radial-gradient(circle at top, #120018, #05050a);
  color: white;
  overflow-x: hidden;
}

/* HEADER */
header{
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(12px);
  background: rgba(10,0,20,0.4);
  z-index: 1000;
  box-shadow: 0 0 25px rgba(255,0,200,0.2);
}

.logo{
  font-weight: 700;
  font-size: 18px;
  text-shadow: 0 0 10px #ff00cc;
}

/* NAV */
nav a{
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: 0.3s;
}

nav a:hover{
  opacity: 1;
  text-shadow: 0 0 10px #00f7ff;
}

/* HERO */
.hero{
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1{
  font-size: 65px;
  font-weight: 700;
  text-shadow: 0 0 20px #ff00cc, 0 0 40px #00f7ff;
}

.typing{
  font-size: 20px;
  margin-top: 10px;
  color: #00f7ff;
}

.cursor{
  animation: blink 0.7s infinite;
}

@keyframes blink{
  50%{opacity: 0;}
}

/* BOTONES */
.btn{
  padding: 12px 22px;
  background: #ff00cc;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 0 15px #ff00cc;
}

.btn.outline{
  background: transparent;
  border: 1px solid #00f7ff;
  color: #00f7ff;
  box-shadow: 0 0 15px #00f7ff;
}

/* SECCIONES */
.section{
  padding: 80px 20px;
  text-align: center;
}

.section h2{
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00f7ff;
}

/* QUIENES SOMOS DESTACADO */
.about{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.about-text{
  max-width: 520px;
}

.highlight{
  margin-bottom: 15px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0,255,255,0.4);
  font-weight: 500;
}

.about-img img{
  width: 320px;
  border-radius: 15px;
  box-shadow: 0 0 25px #ff00cc;
}

/* GRID */
.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* CARDS */
.card{
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(0,255,255,0.2);
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255,0,200,0.1);
}

.card:hover{
  transform: translateY(-8px);
  box-shadow: 0 0 25px #ff00cc;
}

/* PRODUCT */
.product img{
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product button{
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #00f7ff;
  color: black;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 15px #00f7ff;
}

/* WHATSAPP */
.wsp{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 0 20px #25D366;
}

/* FOOTER */
footer{
  text-align: center;
  padding: 30px;
  opacity: 0.6;
}
