* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #FFF;
}

.header-icons {
  display: flex;
  gap: 14px; 
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #d34040;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #FFF;
  padding: 8px 24px;
  border-radius: 4px;
  color: #FFF;
  background-color: transparent;
  transition: background-color 0.8s;
  top: 20px;
  right: 20px;
  position: absolute;
}
.cart-container{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}


.header-button:hover {
  border: 1px solid #d34040;
  background-color: #d34040;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  width: 12%;
  border-radius: 85px;
}

  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    width: 300px;
    margin-top: 46px;
    border-radius: 150px;
    
  }
  .header-button {
    display: flex;
  }
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, #840202, #000000), url("./assets/bg.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}

.hero {
  color: #FFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 28px;
  color: #FFF;
  background-color: #d94140;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.about {
  background-color: #000000;
  overflow: hidden;
  color: #FFF;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 570px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.services {
  background-color: #470505;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.services-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  
}

.buys {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 20px 100px;
}

.buys::-webkit-scrollbar{
  display: none;
}

.buy {
  min-width: 300px;
  flex: none;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background-color: #ffffff;
  color: #000000;

  border: none;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  font-size: 22px;
  cursor: pointer;

  transition: 0.3s;
  z-index: 100;
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.prev:hover, .next:hover {
  transform: scale(1.1);
  background-color: #757575;
}
.buy img {
  width: 100%;
  height: 300px;
  transition: transform 0.2s;
  object-fit: contain;
  object-position: center;
  background-color: #111;
  border-radius: 8px 8px 0 0;

}

.buy img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.buy-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background-color: #000000;
  z-index: 99;
}

.buy-info button {
  color: #FFF;
  background-color: #d94140;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #FFF;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: #FFF;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #650404;
  cursor: url("./assets/pont.png"), auto;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}
.img-footer {
  width: 100px;
  
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */

/*botão carrinho de compras funcional*/
.cart-sidebar{

  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  max-width: 100%;
  background: #6e2424 ;
  z-index: 9999;
  padding: 20px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.active{
right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cart-header button{
  background: #d94140;
  color: aliceblue;          
  border: none;
  padding: 8px 12px;
  border-radius: 6px;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
}

.cart-overlay {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0 ,0.6);
  z-index: 9998;
  display: none;

}

.cart-overlay.active{
display: block;
}

.finalizar-btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  background: #d94140;
  color: aliceblue;
  border: none;
  border-radius: 8px;
  font-weight: 600;

}

@media screeen and (max-width: 480px) {
.cart-sidebar {
  width: 100%;
  right: -100%;
}

body{
  overflow: hidden;
}
.cart-sidebar h2{
  color: aliceblue;
}

.cart-sidebar p{
  color:aliceblue ;
}


}