
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

main {
  height: 92vh;
}

.texto{
    animation: fadeIn 2s;
    font-family: "figtree", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.3vw;
    color: #fff;
    align-items: center;
    padding: 10%;

}

.subtitle{
    font-weight: lighter;
    line-height: 1;
    font-size: 2.8vw;
    letter-spacing: -1px;
}

.title{
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.saiba {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 20.833vw;
    height: 9.783vh;
    border-radius: 4.891vh;
    border: 0.326vh solid #fff;
    font-family: "figtree", sans-serif;
    background-color: #b69d7f;
    color: #fff;
    font-size: 4.891vh;
    margin-top: 5.435vh;
    font-weight: lighter;
    background-image: radial-gradient(#c69752, #b87f3b, #a27850), url("../images/bg2.jpg");
}

/* Container*/
.slider {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
}

/* Cada slide */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Botões de navegação */
.nav-arrow {
  user-select: none;  
  cursor: pointer; 
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 10;
}

.nav-arrow.left { left: 30px; }
.nav-arrow.right { right: 30px; }

.nav-arrow:hover {
  background: #b69d7f;
  color: #fff;
}

.slide2 {
  background-image: linear-gradient(to right, #ae752d, transparent 100%), url("../images/bg2.jpg");
}

.slide3 {
  background-image: linear-gradient(to right, #ae752d, transparent 100%), url("../images/bg3.jpg");
}
@media (max-width: 999px) {

  .saiba {
    width: 30vw; 
    height: auto;
    padding: 12px 20px;
    font-size: 1.1rem;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-top: 30px;
  }

}
