* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
  --verde-botao: #0B8A36;
  --verde-botao-hover: #0E9E3E;

  --amarelo-titulo: #F7D117;
  --amarelo-vivo: #FFD84A;

  --preto-fundo: #050505;
  --preto-secundario: #0B0B0B;
  --preto-gradiente: #111111;

  --texto-principal: #F2F2F2;
  --texto-secundario: #CFCFCF;
  --texto-suave: #AFAFAF;

  --dourado: #C8A63A;
  --dourado-claro: #E1C15A;
}

body {
  background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
  color: var(--texto-principal);
  font-family: 'Poppins', sans-serif;
}


html {
  scroll-behavior: smooth;
}

.menu-de-navegacao {
  position: fixed;
  top: 0;
  color: #EAEAEA;
  width: 100%;
  z-index: 100;
  padding: 1.5rem;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(225, 193, 90, 0.10);
  backdrop-filter: blur(8px);
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 3.5rem;
}

.menu-link {
  text-decoration: none;
  color: var(--texto-secundario);
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: var(--texto-principal);
}

.menu-link::after {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg,
      #C8A63A,
      #FFD84A,
      #E1C15A);
  transition: width 0.4s ease;
  box-shadow: 0 0 6px rgba(255, 216, 74, 0.3);
}

.menu-link:hover::after {
  width: 100%;
}

/* BANNER */
.banner {
  width: 100%;
  background-color: var(--cor-cinza-claro);
  padding-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-top: 70px;
}

.banner-viewport {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 300%;
  /* 3 slides = 300% */
  transition: transform 0.7s ease-in-out;
}

.slide {
  width: calc(100% / 3);
  /* cada slide ocupa 1/3 do slider */
  flex-shrink: 0;
  height: 540px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
  display: block;
}

.indicadores {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.barra {
  width: 40px;
  height: 4px;
  background-color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 2px;
}

.barra.active {
  background-color: #0B7A3B;
  width: 60px;
}

.sub-blocos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-top: 50px;
  font-size: 25px;
}

.sub-bloco {
  background: linear-gradient(135deg, #C8A63A, #E1C15A);
  padding: 10px 17px;
  border-radius: 8.5px;
  border: 1px solid var(--dourado-claro);
  cursor: pointer;
  transition: 0.5s;
  box-shadow:
    0 4px 10px rgba(255, 238, 238, 0.4),
    0 0 6px rgba(225, 193, 90, 0.25);
  color: #000;
}

.sub-bloco:hover {
  transform: scale(1.1);
  box-shadow: var(--dourado);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.4),
    0 0 6px rgba(225, 193, 90, 0.25);
}

.oferta {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
  font-size: 20px;
  padding: 0 20px;
  gap: 3px;
}

.ofertas {
  width: 100%;
  padding: 12px 55px;
  color: #F2F2F2;
  background: linear-gradient(135deg, #0A9F3F, #046B28);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(10, 159, 63, 0.25);
}

.bx {
  font-size: 25px;
  text-align: center;
  color: #F2F2F2;
  margin-right: 8px;
}

.titulo-menu {
  display: flex;
  justify-content: center;
  font-size: 18px;
  margin-top: 45px;
}

.camisa-masculina {
  margin-top: 45px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0 20px;
}

.produto {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #000;
  border-radius: 16px;
  padding: 18px;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.produto:hover {
  transform: translateY(-6px);
  transition: 0.3s;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.description-h5 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 62px;
  color: #222222
}

.valor-riscado {
  display: block;
  margin-bottom: 4px;
  color: #666666;
  font-size: 14px;
  text-decoration: line-through;
}

.preco {
  margin-top: 0px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.preco strong {
  font-size: 23px;
  color: #000;
}

.via-pix {
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.frete {
  display: inline-block;
  margin-top: 10px;
  align-self: flex-start;
  font-size: 12px;
  background: #FFD84A;
  color: #000;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.img-produto {
  background: #ffffff;
  border-radius: 12px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
  margin-bottom: 18px;
}

.img-produto img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.camisa-feminina {
  margin-top: 45px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0 20px;
}

.camisa-infantil {
  margin-top: 45px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0 20px;
}

.camisa-masculina,
.camisa-feminina,
.camisa-infantil {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0 20px;
}

.btn-comprar {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #0B8A36, #0E9E3E);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-comprar:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(11, 138, 54, 0.35);
}

.description a {
  text-decoration: none;
}

.Tamanhos {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.guia-tamanhos-texto {
  text-align: center;
  margin-top: 50px;
  font-size: 25px;
}

.tamanho {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.tamanho img {
  width: 100%;
  height: auto;
  max-height: 100%;
  /* 👈 controla o tamanho */
  object-fit: cover;
}

/*FOOTER*/
.benefits {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid #eee;

  padding: 22px 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -82px;
}

/* BARRA DE BENEFÍCIOS */
.benefits {
  background: linear-gradient(90deg, #00110c, #001a13, #00110c);
  border-top: 1px solid rgba(217, 178, 76, 0.3);
  border-bottom: 1px solid rgba(217, 178, 76, 0.3);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -30px;
}

/* CADA ITEM */
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 100px;
}

/* ÍCONE */
.benefit i {
  font-size: 32px;
  color: #d9b24c;
  margin-top: 2px;
  cursor: pointer;
}

/* TÍTULO */
.benefit h4 {
  font-size: 14px;
  font-weight: 800;
  color: #f0c35a;
  margin: 0 0 6px 0;
}

/* DESCRIÇÃO */
.benefit p {
  font-size: 13px;
  color: #cfcfcf;
  margin: 0;
  line-height: 1.4;
}

/* FOOTER */
.footer-0 {
  background: linear-gradient(90deg, #00110c 0%, #001a13 45%, #00140f 100%);
  color: #fff;
  border-top: 1px solid rgba(217, 178, 76, 0.45);
  overflow: hidden;
  position: relative;
}

.footer-0::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(200, 166, 58, 0.4),
      transparent);
}

/* TOPO */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding: 48px 65px 42px;
  background: linear-gradient(90deg, #00110c 0%, #001911 45%, #00140f 100%);
  border-bottom: 1px solid rgba(217, 178, 76, 0.4);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 800;
  color: #f0c35a;
  margin-bottom: 16px;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: #d9b24c;
  margin-top: 14px;
}

.footer-column a,
.footer-column p {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column p i {
  color: #d9b24c;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-column a:hover {
  color: #f0c35a;
}

/* MEIO */
.footer-bottom {
  display: grid;
  grid-template-columns: 0.85fr 0.9fr 1.15fr 0.8fr;
  align-items: center;
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08)),
    linear-gradient(90deg, #00110c 0%, #001911 45%, #00140f 100%);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(50deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 70px,
      transparent 70px,
      transparent 140px);
  opacity: 0.4;
  pointer-events: none;
}

.footer-box {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  position: relative;
}

.footer-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 85px;
  background: rgba(217, 178, 76, 0.45);
}

.footer-logo img {
  width: 155px;
  max-width: 100%;
  display: block;
}

/* REDES */
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social i {
  color: #f0c35a;
  font-size: 28px;
}

.footer-social a {
  color: #d9b24c;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* RODAPÉ LEGAL */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 28px;
  background: linear-gradient(90deg, #000d09 0%, #00140f 50%, #000f0b 100%);
  border-top: 1px solid rgba(217, 178, 76, 0.28);
}

.logo-texto-1 {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-11-1 {
  font-size: 20px;
  font-weight: 900;
  color: #d9b24c;
  letter-spacing: 2px;
}

.logo-titular-1 {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #e7c96a;
  margin-top: 3px;
}

.footer-legal-texto {
  max-width: 860px;
}

.footer-legal-texto p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
  color: #d7d7d7;
}

.footer-column i {
  text-align: center;
  font-size: 18px;
}

/* ESTRELAS */
.rate {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #d9b24c;
  font-size: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.people-rate {
  margin-left: 6px;
  color: #f0c35a;
  font-size: 12px;
  font-weight: 700;
}

/* TITULO */
.footer-copy {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-copy p {
  color: #f2f2f2;
  font-size: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 14px;
  letter-spacing: 0.5px;
}

.footer-copy p::before,
.footer-copy p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 1px;
  background: rgba(217, 178, 76, 0.45);
}

.footer-copy p::before {
  right: 100%;
  margin-right: 10px;
}

.footer-copy p::after {
  left: 100%;
  margin-left: 10px;
}


/* RESPONSIVO COMPLETO */

/* Tablet */
@media (max-width: 1024px) {
  .menu {
    gap: 1.8rem;
  }

  .slide {
    height: 400px;
  }

  .sub-blocos {
    gap: 25px;
    font-size: 18px;
    padding: 0 20px;
  }

  .camisa-masculina,
  .camisa-feminina,
  .camisa-infantil {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .produto {
    height: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 600px) {
  .menu-de-navegacao {
    padding: 0.8rem;
    overflow-x: auto;
  }

  .menu {
    justify-content: flex-start;
    gap: 1rem;
    width: max-content;
  }

  .menu-link {
    font-size: 13px;
    white-space: nowrap;
  }

  .banner {
    margin-top: 55px;
  }

  .slide {
    height: 220px;
  }

  .slide img {
    object-fit: cover;
  }

  .barra {
    width: 28px;
  }

  .barra.active {
    width: 42px;
  }

  .sub-blocos {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    font-size: 15px;
    padding: 0 15px;
  }

  .sub-bloco {
    width: 100%;
    text-align: center;
  }

  .oferta {
    margin-top: 30px;
    padding: 0 12px;
  }

  .ofertas {
    padding: 12px 18px;
    font-size: 18px;
    text-align: center;
  }

  .titulo-menu {
    font-size: 16px;
    margin-top: 35px;
  }

  .camisa-masculina,
  .camisa-feminina,
  .camisa-infantil {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
    margin-top: 25px;
    align-items: stretch;
  }

  .produto {
    padding: 12px;
    height: 100%;
  }

  .img-produto {
    height: 180px;
    margin-bottom: 12px;
  }

  .img-produto img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .description {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 4px;
  }

  .description-h5 {
    min-height: 52px;
    font-size: 13px;
    line-height: 1.3;
  }

  .valor-riscado {
    font-size: 12px;
  }

  .preco strong {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .via-pix {
    font-size: 11px;
  }

  .frete {
    font-size: 11px;
    padding: 4px 6px;
    margin-bottom: 10px;
  }

  .btn-comprar {
    font-size: 13px;
    padding: 10px;
    margin-top: auto;
  }

  .Tamanhos {
    padding: 10px;
  }

  .guia-tamanhos-texto {
    font-size: 22px;
    margin-top: 25px;
  }

  .tamanho {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 5px;
    overflow: visible;
  }

  .tamanho img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-box {
    min-height: auto;
    padding: 18px 12px;
  }

  .footer-box:not(:last-child)::after {
    display: none;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-copy p {
    font-size: 22px;
  }

  .footer-copy p::before,
  .footer-copy p::after {
    width: 25px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
  }

  .footer-legal-texto p {
    font-size: 9px;
  }
}

/* Celular bem pequeno */
@media (max-width: 380px) {
  .slide {
    height: 190px;
  }

  .camisa-masculina,
  .camisa-feminina,
  .camisa-infantil {
    gap: 10px;
    padding: 0 8px;
  }

  .produto {
    padding: 10px;
  }

  .img-produto {
    height: 150px;
  }

  .description-h5 {
    font-size: 12px;
    min-height: 48px;
  }

  .preco strong {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .btn-comprar {
    font-size: 12px;
    padding: 9px;
  }

  .ofertas {
    font-size: 16px;
  }

  .sub-bloco {
    font-size: 14px;
  }
}