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

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* TOPO */

.topo {
  width: 100%;
  padding: 18px 5%;

  background: rgba(0,0,0,0.82);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(201,161,74,0.18);

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 999;
}

.logo img {
  width: 110px;
  object-fit: contain;
}

/* MENU */

.menu {
  display: flex;
  gap: 35px;
}

.menu a {
  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;

  transition: 0.3s;
}

.menu a:hover {
  color: #c9a14a;
}

/* ÍCONES */

.icones {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(201,161,74,0.25);
  border-radius: 50%;

  color: #ffffff;
  text-decoration: none;

  transition: 0.3s;
}

.top-icon svg {
  width: 20px;
  height: 20px;
}

.top-icon:hover {
  color: #c9a14a;
  border-color: #c9a14a;

  transform: translateY(-2px);
}

/* BARRA CEP */

.cep-bar {
  width: 100%;
  padding: 12px 5%;

  background: #0b0b0b;

  border-bottom: 1px solid rgba(201,161,74,0.18);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cep-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cep-icon {
  color: #c9a14a;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cep-icon svg {
  width: 24px;
  height: 24px;
}

.cep-info small {
  display: block;
  color: #bcbcbc;
  font-size: 12px;
}

.cep-info strong {
  color: #ffffff;
  font-size: 14px;
}

.cep-form {
  display: flex;
  gap: 10px;
}

.cep-form input {
  width: 180px;
  padding: 12px;

  background: #050505;

  border: 1px solid rgba(201,161,74,0.3);
  border-radius: 5px;

  color: #ffffff;
  outline: none;
}

.cep-form input::placeholder {
  color: #9a9a9a;
}

.cep-form button {
  padding: 12px 18px;

  background: linear-gradient(135deg, #c9a14a, #e6c46d);

  color: #000;

  border: none;
  border-radius: 5px;

  font-weight: bold;
  cursor: pointer;

  transition: 0.3s;
}

.cep-form button:hover {
  opacity: 0.9;
}

/* HERO */

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;

  overflow: hidden;
  margin-top: -95px;
  padding-top: 95px;
}

.slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: 0.7s ease;
}

.slide.ativo {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.05)

      );
}

/* TEXTO HERO */

.slide-texto {
  position: absolute;
  z-index: 5;

  left: 7%;
  top: 68%;

  transform: translateY(-50%);

  max-width: 520px;

  padding: 40px;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.78),
    rgba(0,0,0,0.45),
    transparent
  );

  .slide-texto p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}


  border-radius: 12px;

  backdrop-filter: blur(2px);
}

.slide-texto span {
  display: block;

  color: #ffffff;

  letter-spacing: 10px;
  text-transform: uppercase;

  margin-bottom: 25px;

  font-size: 14px;
  text-transform: uppercase;

}


.slide-texto p {
  font-size: 20px;
  line-height: 1.7;

  color: #f2f2f2;

  margin-bottom: 35px;
}

/* BOTÕES */

.botoes {
  display: flex;
  gap: 18px;
}

.btn {
  padding: 16px 32px;

  border-radius: 5px;

  text-decoration: none;

  text-transform: uppercase;
  letter-spacing: 1px;

  font-size: 13px;
  font-weight: bold;

  transition: 0.3s;
}

.dourado {
  background: linear-gradient(135deg, #c9a14a, #e6c46d);

  color: #000;
}

.dourado:hover {
  transform: translateY(-3px);
}

.contorno {
  border: 1px solid #c9a14a;
  color: #c9a14a;
}

.contorno:hover {
  background: #c9a14a;
  color: #000;
}

/* SETAS */

.slide-btn {
  position: absolute;
  z-index: 10;

  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 90px;

  background: rgba(0,0,0,0.35);

  border: none;

  color: #ffffff;

  font-size: 60px;

  cursor: pointer;

  transition: 0.3s;
}

.slide-btn:hover {
  background: rgba(201,161,74,0.3);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* DOTS */

.slide-dots {
  position: absolute;
  z-index: 10;

  left: 50%;
  bottom: 28px;

  transform: translateX(-50%);

  display: flex;
  gap: 10px;
}

.dot {
  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: rgba(255,255,255,0.45);

  cursor: pointer;

  transition: 0.3s;
}

.dot.ativo {
  background: #c9a14a;
}

/* CATEGORIAS */

.categorias {
  width: 90%;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 20px;

  margin-top: -55px;

  position: relative;
  z-index: 20;
}

.categoria {
  background: #0b0b0b;

  border: 1px solid rgba(201,161,74,0.18);
  border-radius: 10px;

  padding: 30px 22px;

  transition: 0.3s;

  cursor: pointer;
}

.categoria:hover {
  transform: translateY(-5px);

  border-color: #c9a14a;
}

.categoria span {
  font-size: 35px;
  color: #c9a14a;
}

.categoria h3 {
  margin-top: 18px;
  margin-bottom: 10px;

  font-size: 21px;
}

.categoria p {
  color: #bcbcbc;
  font-size: 14px;
}

/* PRODUTOS */

.produtos {
  width: 90%;
  margin: 90px auto;
}

.produtos h2 {
  text-align: center;

  margin-bottom: 55px;

  font-family: Georgia, serif;

  color: #c9a14a;
  font-size: 48px;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.card {
  background: #0b0b0b;

  border: 1px solid rgba(201,161,74,0.15);
  border-radius: 10px;

  padding: 25px;

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);

  border-color: #c9a14a;
}

.card img {
  width: 100%;
  height: 260px;

  object-fit: contain;
}

.card h3 {
  margin-top: 18px;
  margin-bottom: 10px;

  font-size: 22px;
}

.card p {
  color: #bcbcbc;

  margin-bottom: 15px;
}

.card strong {
  display: block;

  color: #c9a14a;

  font-size: 24px;

  margin-bottom: 18px;
}

.card button {
  width: 100%;
  padding: 14px;

  border: none;
  border-radius: 5px;

  background: linear-gradient(135deg, #c9a14a, #e6c46d);

  color: #000;

  font-weight: bold;
  text-transform: uppercase;

  cursor: pointer;

  transition: 0.3s;
}

.card button:hover {
  opacity: 0.92;
}

/* FOOTER */

footer {
  margin-top: 90px;
  padding: 35px;

  text-align: center;

  border-top: 1px solid rgba(201,161,74,0.2);

  color: #bcbcbc;
  font-size: 14px;
}

/* RESPONSIVO */

@media(max-width: 1200px) {

  .categorias {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-produtos {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width: 900px) {

  .menu {
    display: none;
  }

  .hero-slider {
    height: 540px;
  }

  .slide-texto h1 {
    font-size: 58px;
  }

  .slide-texto p {
    font-size: 17px;
  }

}

@media(max-width: 600px) {

  .topo {
    padding: 15px 5%;
  }

  .logo img {
    width: 90px;
  }

  .hero-slider {
    height: 500px;
  }

  .slide-texto {
    left: 6%;
    right: 6%;
    max-width: 100%;
  }

  .slide-texto span {
    letter-spacing: 5px;
    font-size: 11px;
  }

  .slide-texto h1 {
    font-size: 40px;
  }

  .slide-texto p {
    font-size: 15px;
  }

  .botoes {
    flex-direction: column;
  }

  .categorias {
    grid-template-columns: 1fr;
  }

  .grid-produtos {
    grid-template-columns: 1fr;
  }

  .cep-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cep-form {
    width: 100%;
  }

  .cep-form input {
    width: 100%;
  }

}
.btn-catalogo{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 230px;
    height: 62px;

    background: linear-gradient(
        135deg,
        #caa74a,
        #f2d87d
    );

    color: #000;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;

    text-decoration: none;
    text-transform: uppercase;

    border-radius: 8px;

    box-shadow:
    0 0 25px rgba(212,175,55,0.18);

    transition: 0.35s ease;
}

.btn-catalogo:hover{
    transform: translateY(-3px);

    box-shadow:
    0 0 35px rgba(212,175,55,0.28);

    background: linear-gradient(
        135deg,
        #d8b85a,
        #ffe59a
    );
}
.icone-carrinho{
    position: relative;
}

.btn-carrinho{
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(212,175,55,0.35);

    background: rgba(0,0,0,0.45);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s;
}

.btn-carrinho:hover{
    border-color: #d4af37;

    color: #d4af37;
}

.dropdown-carrinho{
    position: absolute;

    top: 70px;
    right: 0;

    width: 340px;

    background: #050505;

    border: 1px solid rgba(212,175,55,0.18);

    border-radius: 14px;

    padding: 22px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.55);

    z-index: 999;
}

.icone-carrinho:hover .dropdown-carrinho{
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-carrinho h3{
    color: #d4af37;

    font-size: 18px;

    margin-bottom: 20px;
}

.item-carrinho{
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.item-carrinho img{
    width: 70px;
    height: 70px;

    object-fit: cover;

    border-radius: 10px;

    background: #111;
}

.item-carrinho p{
    color: #fff;

    font-size: 15px;

    margin-bottom: 5px;
}

.item-carrinho span{
    color: #d4af37;

    font-weight: 600;
}

.btn-finalizar{
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #caa74a,
        #f2d87d
    );

    border-radius: 10px;

    color: #000;

    font-weight: 700;

    text-decoration: none;

    margin-top: 10px;

    transition: 0.3s;
}

.btn-finalizar:hover{
    transform: translateY(-2px);
}