/* Estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #000000;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Encabezado y navegación */
  .hero-section {
    background: linear-gradient(to right, #22a215, #b2d1a9);
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  
  nav ul {
    display: flex;
    gap: 10px;
  }
  
  nav a {
    font-weight: 600;
    color: #000000;
  }
  
  .logo {
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  .btn-primary {
    background: #156f0c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #1a8d10;
  }
  
  /* Hero content */
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-content h1 span {
    color: #1b4f0d;
    animation: glow 2s infinite;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #000000;
  }
  
  /* Sección de características */
  .features-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .features-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #22a215;
  }
  
  .feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card {
    background-color: #22a215;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    animation: fadeIn 1s ease-out;
  }
  
  .card h3 {
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1rem;
  }
  
  /* Sección de testimonios */
  .testimonials-section {
    background-color: #f0f0f0;
    padding: 50px 20px;
    text-align: center;
  }
  
  .testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .testimonial {
    background-color: #b2d1a9;
    padding: 20px;
    border-radius: 10px;
    color: #000000;
    max-width: 300px;
  }
  
  .testimonial p {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  /* Sección de precios */
  .pricing-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .pricing-card {
    background-color: #22a215;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .pricing-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn-secondary {
    background-color: #b2d1a9;
    padding: 10px 20px;
    border-radius: 5px;
    color: #000000;
  }
  
  .btn-secondary:hover {
    background-color: #a0c496;
  }
  
  /* Sección de llamada a la acción */
  .cta-section {
    background: linear-gradient(to right, #22a215, #1a8d10);
    color: white;
    padding: 50px 20px;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    color: #f0f0f0;
  }
  
  .btn-primary {
    background-color: #22a215;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #1a8d10;
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .footer ul li a {
    color: #b2d1a9;
    font-weight: 600;
  }
  
  /* Animaciones */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes glow {
    0%, 100% {
      text-shadow: 0 0 10px #b2d1a9, 0 0 20px #b2d1a9, 0 0 30px #b2d1a9;
    }
    50% {
      text-shadow: 0 0 20px #22a215, 0 0 30px #22a215, 0 0 40px #22a215;
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Estilos Responsivos */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .features-section h2,
    .cta-section h2 {
      font-size: 1.8rem;
    }
  
    .feature-cards,
    .testimonial-slider,
    .pricing-cards {
      flex-direction: column;
    }
  
    .testimonial, .pricing-card, .card {
      max-width: 100%;
    }
  
    .footer ul {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    nav ul {
      flex-direction: column;
      gap: 5px;
    }
  
    .hero-section {
      padding: 60px 10px;
    }
  
    .footer ul {
      gap: 5px;
    }
  
    .cta-section h2,
    .features-section h2,
    .pricing-section h2 {
      font-size: 1.5rem;
    }
  }
  

/* For larger screens (desktop/tablet) */
.logo img {
    max-width: 120px;
    height: auto;
    background: white;
    border-radius: 50%;
  }
  
  /* For smaller screens (mobile) */
  @media (max-width: 768px) {
    .logo img {
      max-width: 80px;
      height: auto;
    }
  }