.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  .slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 2s ease;
    z-index: 1;
  }
  
  .slide.active {
    opacity: 1;
    transform: scale(1.1); /* efeito de zoom in leve */
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.555);
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    max-width: 600px;
  }
  
  .hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    margin-top: 20px;
  }
  .button-link {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #000000;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: .5em;
  }
  
  .button-link {
    background-color: #ffffff40;
  }

  .button-link:hover {
    background-color: white;
    cursor: pointer;
    color: black;
    
  }

  .button {
    background-color: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: inherit;
  }

  .button:hover {
    cursor: pointer;
  }


  @media screen and (min-width: 900px) {
    h1 {
      font-size: 3rem;
     
    }
    

  }