.hero-matrimonios {
  height: 55vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INTRO */
.intro-text {
  max-width: 700px;
  color: #555;
}

/* CARDS */
.planta-card {
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
}

.planta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.planta-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* ESPECIES */
.especie {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
}

.especie img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.nombre {
  font-size: 0.75rem;
  margin-top: 8px;
}

/* CULTIVO */
.cultivo-section {
  background: #f7f7f7;
  padding: 60px 20px;
}