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

:root{
  --gold:#f0c400;
  --gold2:#ffd84d;
  --text:#fff;
  --topo-altura:72px;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.22)),
    url("../banner/fundo.png") center top / cover no-repeat fixed;
  background-color:#000;
  overflow-x:hidden;
  width:100%;
  max-width:100%;
  padding-top:var(--topo-altura);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

button{
  font-family:inherit;
}

.container{
  width:min(94%, 1500px);
  margin:0 auto;
}

/* TOPO */

.topo{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(0,0,0,.96);
  border-bottom:1px solid rgba(255,255,255,.05);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}

.topo::after{
  content:"";
  display:block;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(240,196,0,.95) 10%,
    rgba(240,196,0,.12) 50%,
    rgba(240,196,0,.95) 90%,
    transparent 100%
  );
}

.topo .wrap{
  max-width:1500px;
  margin:0 auto;
  padding:10px 18px 9px;
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo{
  flex:0 0 auto;
}

.logo a{
  font-size:26px;
  font-weight:900;
  letter-spacing:1px;
  color:#fff;
  white-space:nowrap;
}

.menu-area{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
  min-width:0;
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
  min-width:0;
}

.menu a{
  color:#fff;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  white-space:nowrap;
  transition:.2s ease;
}

.menu a:hover,
.menu a.ativo{
  color:var(--gold);
}

.cart-link{
  position:relative;
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.cart-link img{
  width:32px;
  height:32px;
  object-fit:contain;
}

.cart-count{
  position:absolute;
  top:-4px;
  right:-4px;
  min-width:20px;
  height:20px;
  padding:0 5px;
  border-radius:999px;
  background:var(--gold);
  color:#000;
  font-size:11px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* RODAPÉ */

.footer-site{
  background:#000;
  color:#fff;
  padding:24px 16px 18px;
  margin-top:26px;
  border-top:1px solid rgba(240,196,0,.22);
}

.footer-wrap{
  width:min(94%, 1200px);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:22px;
  flex-wrap:wrap;
}

.footer-brand strong{
  display:block;
  font-size:22px;
  font-weight:900;
  color:var(--gold);
  margin-bottom:6px;
  letter-spacing:1px;
}

.footer-brand p{
  font-size:14px;
  color:rgba(255,255,255,.78);
}

.footer-links{
  display:flex;
  justify-content:flex-end;
  gap:12px 18px;
  flex-wrap:wrap;
  max-width:680px;
}

.footer-links a{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  transition:.2s ease;
}

.footer-links a:hover{
  color:var(--gold);
}

.footer-copy{
  width:min(94%, 1200px);
  margin:18px auto 0;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.62);
}

/* WHATSAPP */

.whatsapp-fixo{
  position:fixed;
  right:14px;
  bottom:18px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.whatsapp-fixo img{
  width:190px;
  max-width:190px;
  height:auto;
  display:block;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* RESPONSIVO GERAL */

@media (max-width: 780px){
  :root{
    --topo-altura:56px;
  }

  .topo .wrap{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:8px 10px 8px;
    min-height:54px;
    flex-wrap:nowrap;
  }

  .logo a{
    font-size:18px;
    letter-spacing:1px;
  }

  .menu-area{
    width:auto;
    margin-left:auto;
    gap:8px;
    flex-wrap:nowrap;
    min-width:0;
    flex:1 1 auto;
    justify-content:flex-end;
  }

  .menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    flex-wrap:nowrap;
    min-width:0;
    overflow:hidden;
  }

  .menu a{
    font-size:9px;
  }

  .cart-link{
    width:34px;
    height:34px;
  }

  .cart-link img{
    width:26px;
    height:26px;
  }

  .cart-count{
    top:-2px;
    right:-2px;
    min-width:16px;
    height:16px;
    font-size:9px;
    padding:0 4px;
  }

  .footer-wrap{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-links{
    justify-content:center;
  }

  .footer-links a{
    font-size:12px;
  }

  .whatsapp-fixo{
    right:8px;
    bottom:8px;
  }

  .whatsapp-fixo img{
    width:145px;
    max-width:145px;
  }
}

@media (max-width: 480px){
  .topo .wrap{
    padding:8px 8px 8px;
    gap:6px;
  }

  .logo a{
    font-size:16px;
  }

  .menu{
    gap:6px;
  }

  .menu a{
    font-size:8px;
  }

  .cart-link{
    width:30px;
    height:30px;
  }

  .cart-link img{
    width:22px;
    height:22px;
  }

  .cart-count{
    min-width:14px;
    height:14px;
    font-size:8px;
  }

  .whatsapp-fixo img{
    width:130px;
    max-width:130px;
  }
}