* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  min-height: 100vh;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: #f0f8f0;
  color: rgb(33, 48, 22);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #4a7c59;
}

.logo::before {
  content: "🌿";
  margin-right: 0.5rem;
  font-size: 2rem;
}

.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #4a7c59;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #6b9b6b;
}

.conexion-btn {
  background: #4a7c59;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.conexion-btn:hover {
  background: #6b9b6b;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #2d5233;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-button {
  background: #4a7c59;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.cta-button:hover {
  background: #6b9b6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.hero-image {
  position: relative;
  text-align: center;
}

.flower-decoration {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><radialGradient id="flower" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23ffffff"/><stop offset="100%" style="stop-color:%23f0f8f0"/></radialGradient></defs><g transform="translate(200,150)"><g transform="rotate(0)"><ellipse rx="30" ry="8" fill="white" stroke="%234a7c59" stroke-width="1"/></g><g transform="rotate(45)"><ellipse rx="30" ry="8" fill="white" stroke="%234a7c59" stroke-width="1"/></g><g transform="rotate(90)"><ellipse rx="30" ry="8" fill="white" stroke="%234a7c59" stroke-width="1"/></g><g transform="rotate(135)"><ellipse rx="30" ry="8" fill="white" stroke="%234a7c59" stroke-width="1"/></g><circle r="8" fill="%23f4d03f"/></g><path d="M50,250 Q100,200 150,250 Q200,200 250,250 Q300,200 350,250" stroke="%234a7c59" stroke-width="2" fill="none" stroke-dasharray="5,5"/><circle cx="100" cy="220" r="15" fill="%234a7c59"/><circle cx="300" cy="220" r="12" fill="%236b9b6b"/></svg>')
    no-repeat center;
  background-size: contain;
  margin: 0 auto;
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.leaf {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #4a7c59;
  border-radius: 0 100% 0 100%;
  animation: float 3s ease-in-out infinite;
}

.leaf:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: -1s;
}

.leaf:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Products Section */
.products {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #4a7c59;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: #2d5233;
  margin-bottom: 1rem;
}

.section-description {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0f8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.product-info h3 {
  color: #2d5233;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.product-info p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
  }
}
