/* ================================================== */

/* ================ IMPORTAÇÕES ===================== */

/* ================================================== */

/* Importação de fontes do Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ================================================== */

/* =============== RESET GLOBAL ===================== */

/* ================================================== */

/**
 * Reset básico para remover margens e paddings padrão
 * e definir box-sizing como border-box para todos os elementos
 */

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

/* ================================================== */

/* =============== ESTILOS GERAIS =================== */

/* ================================================== */

/**
 * Estilos base para o corpo do documento
 * - Fundo preto
 * - Texto branco
 * - Fonte principal PT Sans
 * - Alinhamento centralizado
 * - Padding para compensar o menu fixo
 */

body {
  background-color: black;
  color: white;
  font-family: 'PT Sans', sans-serif;
  text-align: center;
  padding: 114px 20px 0;

  /* Topo ajustado para acompanhar melhor a altura real do menu */

  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ================================================== */

/* =============== COMPONENTES ====================== */

/* ================================================== */

/* --------------- TIPOGRAFIA ----------------------- */

/**
 * Estilos para títulos e textos
 */

.titulo {
  font-size: 36px;
  margin: 20px 0;
  font-weight: 700;
}

.titulo-destaque, .texto-destaque {
  color: #ADFF2F;
}

.subtitulo {
  font-size: 32px;
  margin: 40px 0 10px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
}

.texto {
  font-size: 20px;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 600px;
}

.texto-auxiliar {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}

/* --------------- BOTÕES --------------------------- */

/**
 * Estilo base para todos os botões
 * - Gradiente verde
 * - Efeitos de hover e transição
 * - Sombra e brilho
 */

.botao {
  display: inline-block;
  background: linear-gradient(135deg, #4feb51 0%, #ADFF2F 100%);
  color: #000;
  text-decoration: none;
  padding: 15px 40px;
  margin: 15px 10px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(79, 235, 81, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  letter-spacing: 1px;
  min-width: 250px;
  max-width: 300px;
  width: min(100%, 300px);
}

/* Efeito hover para botões */

.botao:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(221, 41, 215, 0.6);
  background: linear-gradient(135deg, #dd29d7 0%, #ADFF2F 100%);
  color: #fff;
}

/* Efeito de brilho dinâmico nos botões */

.botao::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  transition: all 0.6s;
  z-index: 1;
}

.botao:hover::after {
  left: 100%;
}

/* Variante de botão para compra */

.botao--comprar {
  padding: 12px 30px;
  font-size: 18px;
  margin-top: 15px;
}

/* Botão com ícone */

.botao--com-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Ícone dentro do botão */

.botao__icone {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: all 0.3s ease;
}

.botao:hover .botao__icone {
  filter: brightness(1) invert(1);
}

/* Modificadores para botões específicos */

/* Botão do WhatsApp */

.botao--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.botao--whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.6);
}

/* Botão do Instagram */

.botao--instagram {
  background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
  box-shadow: 0 4px 15px rgba(195, 53, 132, 0.4);
}

.botao--instagram:hover {
  background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.6);
}

/* --------------- MENU ----------------------------- */

/**
 * Menu fixo no topo da página
 * - Altura reduzida
 * - Fundo preto
 * - Sombra para destaque
 */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  background-color: #000;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  padding: 0;
  margin: 0;
}

.menu:has(.aviso-topo) {
  height: 148px;
}

.aviso-topo {
  min-height: 36px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #ADFF2F, #dd29d7);
  color: #000;
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.aviso-topo__destaque {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.86);
  color: #ADFF2F;
  white-space: nowrap;
}

body:has(.aviso-topo) {
  padding-top: 150px;
}

/* Container do menu */

.menu__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 112px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Lista de itens do menu */

.menu__lista {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', cursive;

  /* Mantendo sua fonte atual */

  text-transform: uppercase;
  letter-spacing: 2px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.menu__link {
  color: #ADFF2F;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
  text-shadow: 0 0 5px #ADFF2F, 0 0 10px rgba(173, 255, 47, 0.5);
}

.menu__link:hover {
  color: #dd29d7;
  text-shadow: 0 0 10px #dd29d7, 0 0 20px rgba(221, 41, 215, 0.7);
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ADFF2F, #dd29d7);
  transition: width 0.3s ease;
}

.menu__link:hover::after {
  width: 100%;
}

/* Logo no menu */

.menu__logo {
  height: 96px;
  width: auto;
}

/* --------------- GALERIA -------------------------- */

/**
 * Galeria de produtos
 * - Layout flexível
 * - Espaçamento entre itens
 */

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

/* Item da galeria (camiseta) */

.galeria__item {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.galeria__item:hover {
  transform: scale(1.05);
}

/* --------------- CARROSSEL ------------------------ */

/**
 * Carrossel de imagens
 * - Largura total
 * - Altura da viewport
 * - Navegação manual com pontos
 */

.carrossel {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-bottom: 35px solid #000000;
  height: min(72vh, 680px);
}

/* Esconde os inputs do carrossel */

.carrossel__input {
  display: none;
}

/* Container dos slides */

.carrossel__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

/* Slide individual */

.carrossel__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Imagem dentro do slide */

.carrossel__imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Navegação manual (pontos) */

.carrossel__navegacao {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Botões de navegação */

.carrossel__botao {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #4feb51;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

/* Controles do carrossel via radio buttons */

#radio1:checked ~ .carrossel__slides {
  transform: translateX(0%);
}

#radio2:checked ~ .carrossel__slides {
  transform: translateX(-100%);
}

#radio3:checked ~ .carrossel__slides {
  transform: translateX(-200%);
}

/* Estilo para o botão ativo */

#radio1:checked ~ .carrossel__navegacao .carrossel__botao--1, #radio2:checked ~ .carrossel__navegacao .carrossel__botao--2, #radio3:checked ~ .carrossel__navegacao .carrossel__botao--3 {
  background-color: #4feb51;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(79, 235, 81, 0.55);
}

/* --------------- FOOTER --------------------------- */

/**
 * Rodapé da página
 * - Layout em grid responsivo
 * - Seções organizadas
 */

/* Container principal do footer */

.footer {
  background: radial-gradient(circle at top center, rgba(221, 41, 215, 0.3) 0%, rgba(0, 0, 0, 0.95) 80%);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;

  /* Mantém alinhado no topo */

}

/* Seção individual do footer */

.footer__selos-seguranca {
  gap: 20px;
  margin-top: 20px;
}

.footer__selos-seguranca img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Container de ícones sociais */

.footer__redes-sociais {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  transform: scale(1.1);
}

.footer__icone:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Métodos de pagamento */

.footer__pagamentos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.footer__pagamento {
  width: 60px;
  height: auto;

  /* filter: brightness(0) invert(1);  garante cor branca em SVGs */

  transition: transform 0.3s ease;
}

/* Selos de segurança */

.footer__selos-seguranca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-height: 100%;
  max-width: 100%;

  /* Nova propriedade */

  justify-content: space-between;

  /* Nova propriedade */

}

.footer__selos-seguranca img {
  width: 300px;

  /* ou outro valor adequado */

  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__secao {
    min-height: auto;
    padding: 20px 0;
  }

}

/* Estilização de SVGs no footer */

.footer__icone svg, .footer__pagamento svg {
  fill: white;
  stroke: white;
}

/* Para SVGs usados como <img> */

.footer__icone img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__titulo {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ADFF2F;
  font-family: 'Bebas Neue', cursive;
}

.footer__texto {
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
}

/* --------------- UTILITÁRIOS ---------------------- */

/**
 * Classes utilitárias para elementos específicos
 */

.conteudo-centralizado {
  width: min(100%, 900px);
  max-width: 900px;
  max-height: auto;
  margin: 0 auto;
  padding: 0 20px;
}

.secao-revenda {
  margin: 40px 0;
}

/* ================================================== */

/* =============== RESPONSIVIDADE =================== */

/* ================================================== */

@media (max-width: 768px) {

  /* Ajustes para telas menores */

  /* Footer em coluna única */

  .footer__secao {
    min-width: 100%;
    text-align: center;
  }

  /* Centralização de elementos */

  .footer__redes-sociais, .footer__pagamentos, .footer__selos-seguranca {
    justify-content: center;
  }

  /* Menu em coluna quando necessário */

  .menu {
    height: auto;
    min-height: 108px;
    padding: 0;
  }

  .menu__nav {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    justify-items: center;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 10px;
  }

  body {
    padding-top: 126px;
  }

  body:has(.aviso-topo) {
    padding-top: 126px;
  }

  .menu:has(.aviso-topo) {
    min-height: 126px;
  }

  .menu__nav {
    height: auto;
  }

  .aviso-topo {
    min-height: 34px;
    padding: 7px 10px;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .menu__lista {
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .menu__link {
    display: block;
    font-size: clamp(1rem, 4.6vw, 1.35rem);
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 5px 2px;
    white-space: normal;
  }

  .menu__logo {
    height: 62px;
  }

  /* Ajuste de tamanhos de texto */

  .titulo {
    font-size: 28px;
  }

  .subtitulo {
    font-size: 24px;
  }

  .texto {
    font-size: 16px;
  }

  .carrossel {
    height: 430px;
    min-height: 430px;
    border-bottom-width: 20px;
  }

  .botao {
    min-width: 0;
    width: min(100%, 320px);
    padding: 14px 22px;
    font-size: 18px;
  }

  .conteudo-centralizado {
    width: 100%;
    padding: 0 12px;
  }

}

.gif__central {
  width: min(100%, 900px);
  max-width: 100%;

  /* controla o tamanho máximo do gif */

  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  align-self: center;
  display: block;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  body {
    padding-top: 112px;
    padding-left: 0;
    padding-right: 0;
  }

  body:has(.aviso-topo) {
    padding-top: 126px;
  }

  .menu:has(.aviso-topo) {
    min-height: 126px;
  }

  .aviso-topo {
    font-size: 0.7rem;
  }

  .aviso-topo__destaque {
    padding: 3px 8px;
  }

  .menu__lista {
    gap: 2px;
  }

  .menu__link {
    font-size: clamp(1.02rem, 5.2vw, 1.3rem);
    letter-spacing: 0.02em;
  }

  .menu__nav {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 7px 10px 9px;
  }

  .menu__logo {
    height: 58px;
  }

  .titulo {
    font-size: 24px;
  }

  .subtitulo {
    font-size: 22px;
  }

  .texto {
    font-size: 15px;
    line-height: 1.5;
  }

  .carrossel {
    height: 340px;
    min-height: 340px;
  }

}

.botoes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.botao--outline {
  background: transparent;
  color: #ADFF2F;
  border: 2px solid rgba(173, 255, 47, 0.75);
  box-shadow: 0 0 0 1px rgba(173, 255, 47, 0.15), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.botao--outline:hover {
  background: rgba(173, 255, 47, 0.12);
  color: #fff;
  border-color: #dd29d7;
}

.hero__selo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(173, 255, 47, 0.45);
  background: linear-gradient(135deg, rgba(173, 255, 47, 0.16), rgba(221, 41, 215, 0.14));
  color: #f4ffe0;
  font-family: 'Prompt', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.hero__destaques {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 22px auto 8px;
}

.hero__destaque-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.conteudo-centralizado {
  position: relative;
}

.conteudo-centralizado::before {
  content: '';
  position: absolute;
  inset: 4% 10% auto;
  height: 180px;
  background: radial-gradient(circle, rgba(173, 255, 47, 0.16), transparent 68%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal--visivel {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--visivel {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

@media (max-width: 768px) {
  .hero__selo {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .hero__destaques {
    gap: 8px;
  }

  .hero__destaque-item {
    font-size: 0.88rem;
    padding: 9px 14px;
  }

}

@media (max-width: 480px) {
  .hero__destaques {
    flex-direction: column;
    align-items: center;
  }

  .hero__destaque-item {
    width: min(100%, 280px);
  }

}

/* ================= FOOTER ALIGN FIX ================= */

.footer__container {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  max-width: 1280px;
  padding: 0 24px;
  align-items: stretch;
}

.footer__secao {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 12px 10px;
  text-align: center;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.footer__titulo {
  margin-bottom: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.footer__redes-sociais, .footer__pagamentos, .footer__selos-seguranca {
  width: 100%;
  min-height: 78px;
}

.footer__redes-sociais {
  transform: none;
  gap: 16px;
}

.footer__icone {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.footer__icone:hover {
  border-color: rgba(173, 255, 47, 0.5);
  background: rgba(173, 255, 47, 0.05);
}

.footer__icone img {
  width: 30px;
  height: 30px;
}

.footer__pagamentos {
  padding: 6px 0;
  gap: 14px;
}

.footer__pagamento {
  width: 68px;
  max-height: 40px;
  object-fit: contain;
}

.footer__selos-seguranca {
  justify-content: flex-start;
  gap: 10px;
}

.footer__selos-seguranca img, .footer__selo {
  width: min(100%, 300px);
  max-width: 300px;
  height: auto;
  display: block;
}

.footer__texto {
  margin: 0;
  max-width: 320px;
  text-align: center;
}

.footer__info-legal {
  max-width: 960px;
  margin: 34px auto 0;
  padding: 22px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__texto-legal {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .footer__secao {
    min-height: auto;
    padding: 8px 6px;
  }

}

/* ===== FOOTER EDITORIAL ===== */

.footer {
  background: #000;
  padding: 58px 0 26px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 40px rgba(173, 255, 47, 0.05), 0 -18px 55px rgba(221, 41, 215, 0.04);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.95fr;
  gap: 42px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 28px 38px;
  align-items: start;
}

.footer__secao {
  min-height: 0;
  display: block;
  padding: 0;
  text-align: left;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer__secao--brand {
  max-width: 360px;
}

.footer__marca {
  display: inline-block;
  margin-bottom: 34px;
  color: #f7f7f7;
  text-decoration: none;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.footer__contato {
  margin-top: 40px;
}

.footer__titulo {
  display: block;
  min-height: 0;
  margin: 0 0 22px;
  color: #f6f6f6;
  font-family: 'Prompt', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}

.footer__texto {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.85;
  text-align: left;
}

.footer__lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__lista li + li {
  margin-top: 12px;
}

.footer__link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer__link:hover {
  color: #ADFF2F;
  transform: translateX(2px);
}

.footer__link--muted {
  color: rgba(255, 255, 255, 0.76);
}

.footer__redes-sociais {
  display: flex;
  width: auto;
  min-height: 0;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer__icone {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
}

.footer__icone img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer__selos-seguranca {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-height: 0;
  justify-content: start;
  align-items: start;
}

.footer__selo {
  width: 100%;
  max-width: 68px;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.footer__secao--certificados {
  display: flex;
  align-items: flex-start;
}

.footer__seguranca-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__secao--certificados .footer__titulo {
  margin: 0;
  max-width: 240px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer__secao--certificados .footer__selo {
  flex: 0 0 auto;
  width: 54px;
  max-width: 54px;
}

.footer__rodape {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 30px;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 26px 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__info-legal {
  max-width: none;
  margin: 0;
  padding: 0;
  border-top: none;
  text-align: left;
}

.footer__texto-legal {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer__pagamentos {
  display: flex;
  width: auto;
  min-height: 0;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
}

.footer__pagamento {
  width: 54px;
  max-height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .footer__rodape {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__pagamentos {
    justify-content: flex-start;
  }

}

@media (max-width: 768px) {
  .footer {
    padding-top: 44px;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px 28px;
  }

  .footer__marca {
    margin-bottom: 24px;
    font-size: 3rem;
  }

  .footer__selos-seguranca {
    grid-template-columns: repeat(2, minmax(0, 68px));
  }

  .footer__seguranca-inline {
    align-items: flex-start;
  }

  .footer__rodape {
    gap: 20px;
    padding: 22px 18px 0;
  }

}

@media (max-width: 480px) {
  .footer__marca {
    font-size: 2.5rem;
  }

  .footer__texto, .footer__texto-legal, .footer__link {
    font-size: 0.92rem;
  }

  .footer__seguranca-inline {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

}


