/* ===== SECCIÓN BENEFITS ===== */

.benefits-section {
  width: 100%;
  background-color: #fdf7f0;
  padding: 90px 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 🔥 UNA SOLA LÍNEA */
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== CARD ===== */

.card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ✨ EFECTO PREMIUM */
.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Imagen cuadrada */
.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Icono */
.icon {
  width: 55px;
  height: 55px;
  margin-top: -28px; /* 🔥 efecto flotante */
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  border: 4px solid white;
}

/* Título */
.card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #000000;
  margin: 20px 15px 10px;
  font-size: 1.1rem;
}

/* Texto */
.card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #6c757d;
  margin: 0 20px 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

/* Tablet grande */
@media (max-width: 1200px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Móvil */
@media (max-width: 480px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

.animar-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animar-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
