* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-slider {
    position: absolute;
    inset: 0;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 30, 30, 0.65),
      rgba(10, 30, 30, 0.85)
    );
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f5f5f5;
  }
  
  .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #c7d3c0;
    margin-bottom: 16px;
  }
  
  .hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 720px;
  }
  
  .hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 36px;
    color: #e0e0e0;
  }
  
  .btn-whatsapp {
    width: fit-content;
    padding: 16px 36px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-whatsapp:hover {
    background-color: #256528;
    transform: translateY(-2px);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  }  