/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Hero section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-text button {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-text button:hover {
  background: #444;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

/* Cards section */
.cards-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 10%;
}

.card {
  border-radius: 12px;
  padding: 20px;
  color: #222;
  position: relative;
  text-align: left;
}

.card .number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.card i {
  font-size: 1.5rem;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* Colores personalizados */
.c1 { background: #fcd5ce; }
.c2 { background: #fef9c3; }
.c3 { background: #d0f4f7; }
.c4 { background: #c7d2fe; }

/* Responsive */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-section {
    grid-template-columns: 1fr;
  }
}
