/* estilo do slider */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 600px;
    
  }
  
  .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    width: 100%;
    height: auto; /* Ajusta a altura conforme necessário */
    margin-top: 10px;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  .slide img {
    width: 100%;
    height: 500px;
    display: block;
  }
  
  .nav-button {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F61, #D83A56);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .nav-button:hover {
    background: linear-gradient(135deg, #D83A56, #FF6F61);
    transform: translateY(-50%) scale(1.1);
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  /* estilo nav buton */

.nav-button {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F61, #D83A56);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .nav-button i {
    font-size: 24px; /* Ajuste o tamanho do ícone conforme necessário */
  }
  
  .nav-button:hover {
    background: linear-gradient(135deg, #D83A56, #FF6F61);
    transform: translateY(-50%) scale(1.1);
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  