
/* Título principal */
.hero-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
  color: #0a7a6a;
  text-shadow: 0 0 12px rgba(15, 184, 154, 0.2);
  letter-spacing: -0.5px;
}

/* Párrafo */
.hero-text p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #333;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}


/* Botón CTA */
.cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #0a7a6a, #0fb89a);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(2, 179, 123, 0.25);
    margin-top: auto !important; /* Empuja el botón al final de la tarjeta */
}
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(2, 179, 123, 0.35);
}
/* Estilo general para el contenedor de los servicios */
#productos {
  padding: 40px;
  text-align: center;
}

.titulo {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sub {
  font-size: 1rem;
  margin-bottom: 30px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.service-card:hover{ 
  transform:translateY(-10px); 
  box-shadow:0 16px 36px rgba(2,179,123,.18); 
}
.service-card i {
  font-size: 40px;
  margin-bottom: 20px;
  color:var(--brand)
}

.service-card h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 0.9rem;
  margin-bottom: 10px;
}



.service-card .cta:hover {
  background-color: #0056b3;
}
