:root{
 

  --background: #fff3ec;
  --text-paragraph: #271c19;
  --headline: #0b6618;
  --headline-white: #fffffe;
  --footer-bg: #362706;
  --social-icon-line: #fffffe;
  --social-icon-bg: #271c19

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-osx-font-smoothing: grayscale;
  /* font-family: 'Bonny', serif; */
  font-family: 'Dancing Script', cursive;
  font-size: larger;
  color: var(--text-paragraph);
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--background);
}

h1, h2{
  font-family: 'Bonny', serif;
  font-weight: 700;
  font-size: 5rem;
}

.nome{
  background-image: url('./assets/foto1.jpg');
  background-position-y: center;
  background-size: cover;
  height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nome > h1, h2 {
  color: var(--headline);
  font-size: 5rem;
}

.nome > span {
  color: var(--headline);
  font-size: 4rem;
}

footer{
  background-color: var(--footer-bg);
  margin-top: 1rem;
  padding: 0.3rem 1rem 0.3rem 0.5rem;
}

.socialmedia{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.3rem;
  height: 100%;
  
}

.socialmedia > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid var(--social-icon-line);
  border-radius: 20%;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
}

.socialmedia > div > a {
  display: flex;
  width: 100%;
  height: 100%;
}

.mobile {
  display: none !important;
}

.socialmedia > div:hover {
  --social-icon-line: var(--social-icon-bg);
  background-color: var(--background);
  transform: scale(1.2);
  z-index: 100;
}
.socialmedia > div:active {
  transform: scale(0.95);
}

.sobre-empresa{
  min-height: 15rem;
  display: flex;
}

.empresa-content, .locais{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem 2rem 4rem;
}



.produtos-title{
  background-image: url('./assets/foto3.jpg');
  background-size: cover;
  background-position-y: center;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produtos-title > h2{
  color: var(--headline-white);
}

.container{
  max-width: 100%;
}

.container-thumbs {
  margin: 1rem 0 1rem 0;
  display: flex;
}

.btn-slide-prev, .btn-slide-next{
  width: 3rem;
  border: none;
  outline: none;
}

.btn-slide-prev{
  background: linear-gradient(to left, transparent 0%, black 200%);
}

.btn-slide-next{
  background: linear-gradient(to right, transparent 0%, black 200%);
}


.btn-slide-next:active, .btn-slide-prev:active{
  opacity: 0.5;
  transform: scale(0.90);
}

.slides{
  overflow: hidden;
}

.slide-item{
  display: flex;
  justify-content: center;
}

.slide-item > img {
  /* max-width: 30rem; */
  max-height: 40rem;
}

.slides-thumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow: hidden;
  height: 12rem;
}

.slide-item-thumb{
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  cursor: grab;
  display: flex;
  width: 7rem;
  height: 10rem !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.slide-item-thumb:hover {
  transform: scale(1.1);
  z-index: 100;
  transition: all 300ms ease-in-out;
}
.slide-item-thumb:active{
  transform: scale(0.95);
}



@media(max-width: 800px) {
  h2 {
    font-size: 3rem;
  }
  .nome{
    background-position-x: center;
    height: 25rem;
  }
  .nome > h2 {
    font-size: 3.8rem;
  }
  .nome > span {
    font-size: 2.5rem;
    white-space: nowrap;
    font-weight: bold;
  }
  .slides, .slides-thumbs{
    overflow: auto;
  }
  .slide-item > img {
    max-height: 25rem;
  }
  .btn-slide-prev, .btn-slide-next{
    width: 15rem;
  }
  .mobile{
    display: flex !important;
  }
  .web{
    display: none !important;
  }
  .empresa-content{
    padding: 2rem;
  }
}
