
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #222;
  color: #fff;
  min-height: 100vh;
}

/* Hero principal */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding: 4rem 5%;
  gap: 2rem;
}

/* Texto */
.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(5rem, 10vw, 8rem); 
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-text .pink { color: #ff4da6; }
.hero-text .blue { color: #6ac6ff; }
.hero-text .green { color: #7dff91; }

.hero-text p {
  font-size: 1.5rem; 
  margin-bottom: 2.5rem;
  color: #ddd;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #222;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn:hover {
  background: #ddd;
}

/* Grid de imágenes */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem; 
}

.hero-grid img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transform: scale(0.8); 
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: clamp(3rem, 8vw, 5rem);
  }
}

@media (max-width: 600px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
}
