*{
    margin:0;
    padding:0;

  }
#header {
    height: 48px;
    margin: auto;
    width: 100%;
    list-style: none;
    background: #fff;
    border-bottom: solid whitesmoke thick;
    text-align: center;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1rem;
  }
  li {
    transition: 0.2s;
    display: inline-block;
    margin-top: 8px;
    margin-inline: 1.5rem;
    @media screen and (max-width:500px){
      margin-inline: 1rem;
    }
   
  }
  .h-link {
    color: grey;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
  }
  li:hover {
    transform: scale(1.2);
  }
  .h-link:hover {
    transition: 0.2s;
    color: #16a085;
  }
  .container {
    height: 100vh;
    width: 100%;
    margin: auto;
    background: url(../resources/leaves.jpg);
    background-position: center;
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
    @media screen and (max-width:500px){
      gap:0;
    }
  }
.carrousel{
    width:37.5vw;
    height:50vh;
    position:absolute;
    top:calc(50% - 22.5vh);
    left:calc(50% - 37.5vw/2);
    border:3px solid white;
    border-radius:30px;
    background-color:rgba(0,0,0,0.75);
    display:flex;
    justify-content:flex-start;
    align-items:center;
    flex-direction: column;
    gap:1rem;

    @media screen and (max-width: 500px) {
        width: 90%;
        height: 60%;
        left: 5%;
        top: calc(50% - 30vh);
    }
}

#lojaTitle{
    text-align:center;
    color:white;
    font-size:1.75rem;

    @media screen and (max-width: 500px) {
        font-size: 1.25rem;
        margin: 0.5rem 0;
    }
}
.carrouselImgs{
    height:75%;
    width:55%;
    position: relative;
    overflow: hidden;
    margin-left:3.25rem;

    @media screen and (max-width: 500px) {
        width: 80%;
        height: 70%;
    }
}
img{
    width:100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 500px) {
        padding: 0 9px;
    }
}

.carousel-slide {
    position: absolute;
    width: 85%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: contain;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding:1rem;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 100%;
    transition: background 0.3s ease;

    @media screen and (max-width: 500px) {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

.buttonDiv{
    position:absolute;
    left:calc(50vw - 35px);
    top:85vh;
    border:2px solid #3f7652;
    width:70px;
    height:50px;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius:30px;
    background: #16a085;
    color: white;
    transition:all 0.3s ease;
    &:hover {
        cursor: pointer;
        transform:translateY(-5px);
        transform:scale(1.1);
        filter:brightness(1.1);
    }
    
}
#footer {
  width: 100%;
  height: 60px;
  background: #b8b4b4;
  border-top: solid rgba(0,0,0,0.1) thick;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  bottom: 0;
}

#footer a {
  color: rgba(0,0,0,0.8);
  text-decoration: none;
  font-size: 1rem;
  margin-left:3rem;
  transition: 0.2s;
}

#footer a:hover {
  color: #16a085;
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
    #header {
      height: 40px;
    }
    li {
      margin-top: 6px;
    }
    .h-link {
      font-size: 18px;
    }
    #right {
      visibility: hidden;
      display: none;
    }
    #left h1 {
      font-size: 100px;
    }

  }

  
