/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Hero Section */
.plants-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
  background: #f8f8f8;
  border-radius: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.5;
}

.hero-text button {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 0 #111;
  transition: all 0.3s;
}

.hero-text button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #111;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 300px;
  z-index: 2;
  position: relative;
}

/* Forma curva detrás de la planta */
.bg-shape {
  position: absolute;
  width: 70%;
  height: 80%;
  background: #d9f0df;
  border-radius: 40% 0 0 40%;
  right: 0;
  top: 10%;
  z-index: 1;
}

/* Círculos decorativos */
.circle {
  position: absolute;
  border: 1px solid #aaa;
  border-radius: 50%;
  font-size: 0.75rem;
  padding: 25px;
  color: #444;
  white-space: nowrap;
  background: #fff;
}

.c1 {
  bottom: 15%;
  left: 20%;
}

.c2 {
  top: 15%;
  right: 10%;
}

/* Cards Section */
.plants-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 10%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
}

.plants-cards .card {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #444;
  flex: 1;
}

.plants-cards .card img {
  width: 80px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .plants-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .plants-cards {
    flex-direction: column;
  }
}
