* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #001f0d;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

  background-image: url("../assets/fundo-header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 68, 30, 0.15);
}

.header-content {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 108px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #02160c;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: #0057b8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.secure-store {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #02160c;
}

.secure-store strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.secure-store small {
  display: block;
  font-size: 10px;
  font-weight: 700;
}

.shield-icon {
  font-size: 22px;
}

.cart-button {
  position: relative;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.cart-button span {
  position: absolute;
  top: -9px;
  right: -12px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0046a8;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #006b2d;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 21px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
}

/* =========================================
   NAVBAR — ÍCONES PERSONALIZADOS
========================================= */

.shield-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
}

.shield-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cart-button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.cart-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.cart-button span {
  position: absolute;
  top: -2px;
  right: 0.5;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0046a8;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}


/* Hero */

/* Hero */

/* Hero */

.hero-section {
  position: relative;
  padding-top: 74px;
  overflow: hidden;
  background: #f5c400;

  /* Desktop mais próximo da proporção real da arte */
  min-height: 680px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 74px 0 0 0;
  background-image: url("../assets/fundo.png");
  background-repeat: no-repeat;

  /* Mantém a arte grande, mas deixa aparecer mais topo */
  background-size: 100% auto;

  /* Desce só um pouco sem cortar as luminárias */
  background-position: center top;

  opacity: 1;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 74px 0 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 0, 0.06) 0%,
    rgba(255, 214, 0, 0.02) 45%,
    rgba(255, 214, 0, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(680px - 74px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  padding-top: 18px;
}

.hero-text h1 {
  line-height: 0.86;
  letter-spacing: -3px;
  margin-bottom: 24px;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.hero-text h1 span {
  display: block;
  font-size: clamp(72px, 8.4vw, 138px);
  font-weight: 900;
  color: #00732f;
  text-shadow: 0 4px 0 rgba(0, 59, 25, 0.08);
}

.hero-text h1 strong {
  display: block;
  font-size: clamp(76px, 8.8vw, 148px);
  font-weight: 900;
  color: #004bbb;
  text-shadow: 0 5px 0 rgba(0, 29, 96, 0.1);
}

.hero-text p {
  max-width: 455px;
  margin-bottom: 30px;
  color: #07160b;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 800;
}

.hero-benefits {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 22px;
  border-right: 1px solid rgba(0, 70, 30, 0.25);
}

.hero-benefits div:last-child {
  border-right: 0;
}

.hero-benefits span {
  font-size: 27px;
}

.hero-benefits strong {
  display: block;
  font-size: 12px;
  color: #051308;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-benefits small {
  display: block;
  font-size: 9px;
  color: #052010;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-button {
  width: fit-content;
  min-width: 295px;
  height: 68px;
  padding: 0 36px;
  border-radius: 7px;
  background: linear-gradient(180deg, #00963b, #005b24);
  box-shadow:
    0 14px 26px rgba(0, 77, 29, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 34px rgba(0, 77, 29, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.hero-product {
  position: relative;
  min-height: calc(100vh - 74px);
}

.hero-shirt {
  position: absolute;
  top: 18px;
  right: 10px;
  width: min(650px, 50vw);
  filter: drop-shadow(0 30px 35px rgba(0,0,0,0.32));
  animation: floatShirt 5s ease-in-out infinite;
}

.promo-badge {
  position: absolute;
  left: -30px;
  top: 43%;
  width: 158px;
  z-index: 3;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.28));
  animation: pulseBadge 2.5s ease-in-out infinite;
}

.hero-ball {
  position: absolute;
  left: 55px;
  bottom: 42px;
  width: 145px;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,0.35));
}

@keyframes floatShirt {
  0%, 100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* Mobile */

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .mobile-nav {
    display: none;
    background: rgba(248, 204, 0, 0.97);
    padding: 14px 24px 22px;
    border-top: 1px solid rgba(0, 68, 30, 0.16);
  }

  .mobile-nav.active {
    display: grid;
    gap: 14px;
  }

  .mobile-nav a {
    color: #02160c;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero-section {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 34px 0 42px;
  }

  .hero-text {
    text-align: center;
    padding-top: 12px;
  }

  .hero-text h1 {
    transform: rotate(-3deg);
    margin-bottom: 20px;
  }

  .hero-text h1 span {
    font-size: clamp(54px, 18vw, 82px);
  }

  .hero-text h1 strong {
    font-size: clamp(58px, 19vw, 90px);
  }

  .hero-text p {
    margin: 0 auto 24px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-benefits {
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-benefits div {
    flex-direction: column;
    gap: 4px;
    padding: 0 8px;
    text-align: center;
  }

  .hero-benefits span {
    font-size: 22px;
  }

  .hero-benefits strong {
    font-size: 10px;
  }

  .hero-benefits small {
    font-size: 7px;
  }

  .primary-button {
    min-width: 280px;
    height: 58px;
    font-size: 15px;
    margin: 0 auto;
  }

  .hero-product {
    min-height: 360px;
    order: -1;
  }

  .hero-shirt {
    width: min(430px, 92vw);
    right: 50%;
    transform: translateX(50%);
    top: 6px;
  }

  .promo-badge {
    width: 110px;
    left: 5%;
    top: 54%;
  }

  .hero-ball {
    width: 105px;
    left: 10%;
    bottom: 4px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-content {
    height: 66px;
  }

  .logo img {
    width: 96px;
  }

  .hero-section {
    padding-top: 66px;
  }

  .hero-content {
    padding-top: 24px;
  }

  .hero-product {
    min-height: 330px;
  }

  .hero-text h1 {
    letter-spacing: -2px;
  }

  .hero-benefits {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero-benefits::-webkit-scrollbar {
    display: none;
  }

  .hero-benefits div {
    min-width: 92px;
  }
}


/* =========================================
   HERO — ÍCONE DO BOTÃO COMPRAR AGORA
========================================= */

.primary-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex: 0 0 38px;
}

/* ================================
   AJUSTE SOMENTE DOS ELEMENTOS
   Não mexe no fundo do hero
================================ */

@media (min-width: 901px) {
  /* Move todo o bloco de informações para esquerda e para baixo */
  .hero-text {
    transform: translate(-145px, 98px);
    margin-bottom: 0px;
  }

  /* Mantém texto mais próximo da referência */
  .hero-text h1 {
    margin-bottom: 26px;
    transform: translate(-115px, 78px);
  }

  .hero-text p {
    max-width: 430px;
    margin-bottom: 30px;
  }

  .hero-benefits {
    margin-bottom: 22px;
  }

  /* Move a camiseta apenas para baixo */
  .hero-shirt {
    top: 77px;
    right: -85px;
    width: min(750px, 60vw);
  }

  /* Selo acompanha melhor a nova posição da camiseta */
  .promo-badge {
    left: -90px;
    top: 510px;
  }

  /* Bola um pouco mais baixa e alinhada com a base */
  .hero-ball {
    left: 55px;
    bottom: 5px;
  }
}


/* ================================
   LOGO GRANDE NO HERO
   Substitui o texto VAAAAII BRASIL
================================ */

@media (min-width: 901px) {
  .hero-logo-title {
    width: 100%;
    margin-bottom: 24px;
    transform: rotate(-4deg);
    transform-origin: left center;
  }

  .hero-logo-title img {
    width: min(620px, 44vw);
    height: auto;
    left: -10px !important;
    object-fit: contain;
    filter:
      drop-shadow(0 5px 0 rgba(0, 65, 25, 0.08))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
  }
}


/* =========================================
   HERO BENEFÍCIOS — FAIXA MAIOR
   Frete / Produto oficial / Até 12x
========================================= */

@media (min-width: 901px) {
  .hero-benefits {
    width: 520px;
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;

    margin: 0 0 24px 0;
    padding: 12px 24px;

    background: rgba(255, 220, 63, 0.192);
    border: 1px solid rgba(255, 237, 120, 0.123);
    border-radius: 2px;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 10px 28px rgba(90, 70, 0, 0.08);
  }

  .hero-benefits .hero-benefit {
    flex: 1;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 18px;
    border-right: 1px solid rgba(0, 55, 25, 0.18);
  }

  .hero-benefits .hero-benefit:first-child {
    justify-content: flex-start;
    padding-left: 0;
  }

  .hero-benefits .hero-benefit:last-child {
    justify-content: flex-end;
    padding-right: 0;
    border-right: 0;
  }

  .hero-benefit img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    flex: 0 0 38px;
  }

  .hero-benefit strong {
    display: block;
    color: #071407;
    font-size: 14px;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero-benefit small {
    display: block;
    margin-top: 5px;
    color: #071407;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
  }
}



/* Camisa Azul */

.blue-shirt-section {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #001b45;
}

.blue-shirt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/fundo-azul.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.blue-shirt-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 16, 52, 0.1) 0%,
      rgba(0, 16, 52, 0.15) 42%,
      rgba(0, 16, 52, 0.36) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.blue-shirt-content {
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 36px;
}

.blue-shirt-product {
  position: relative;
  height: 300px;
  min-height: 300px;
  align-self: end;
  overflow: visible;
}

.blue-shirt-img {
  position: absolute;
  left: 35px;
  top: auto;
  bottom: -20px;
  width: min(475px, 49vw);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.48));
  animation: none !important;
  transform: none !important;
}
.blue-ball {
  position: absolute;
  left: -10px;
  bottom: -4px;
  width: 145px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.42));
}

.blue-shirt-text {
  max-width: 530px;
  padding-top: 12px;
}

.blue-stars {
  color: #ffd400;
  font-size: 18px;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(255, 212, 0, 0.5);
}

.blue-shirt-text h2 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.92;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-style: italic;
  margin-bottom: 5px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.blue-edition {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.blue-shirt-text p {
  max-width: 455px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 24px;
}

.blue-benefits {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}

.blue-benefits div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.blue-benefits span {
  font-size: 24px;
  filter: grayscale(1) brightness(5);
}

.blue-benefits strong {
  display: block;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.blue-benefits small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.blue-button {
  width: fit-content;
  min-width: 255px;
  height: 55px;
  padding: 0 32px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffd829, #e4a900);
  box-shadow:
    0 14px 28px rgba(255, 195, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #06121f;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
  margin-bottom: 20px;
}

.blue-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(255, 195, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}


/* =========================================
   CAMISETA AZUL — ÍCONES
========================================= */

@media (min-width: 901px) {
  .blue-shirt-features {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 22px 0 24px;
  }

  .blue-shirt-feature {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .blue-shirt-feature img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.32));
  }

  .blue-shirt-feature span {
    color: #ffffff;
    font-size: 11px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
}


/* =========================================
   Blue — ÍCONE DO BOTÃO COMPRAR AGORA
========================================= */

.blue-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex: 0 0 38px;
}


/* Camisa Preta */

.black-shirt-section {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #090909;
}

.black-shirt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/fundo-preto.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.black-shirt-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.12) 38%,
      rgba(0, 0, 0, 0.24) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.black-shirt-content {
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 28px;
}

.black-shirt-text {
  position: relative;
  z-index: 4;
  max-width: 530px;
  padding-top: 30px;
  padding-left: 18px;
  transform: translateX(42px);
}

.black-shirt-text h2 {
  font-size: clamp(36px, 3.1vw, 52px);
  line-height: 0.9;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-style: italic;
  margin-bottom: 10px;
  text-shadow: 0 7px 16px rgba(0, 0, 0, 0.65);
}

.black-stars {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.black-stars span {
  color: #ffd400;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 212, 0, 0.5);
}

.black-stars strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.black-shirt-text p {
  max-width: 355px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 600;
  margin-bottom: 27px;
  letter-spacing: 0.1px;
}

.black-benefits {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-bottom: 24px;
}

.black-benefits div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.black-benefits span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  opacity: 0.95;
}

.black-benefits strong {
  display: block;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.black-benefits small {
  display: block;
  color: #ffffff;
  font-size: 9px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.82;
}

.black-button {
  width: fit-content;
  min-width: 255px;
  height: 55px;
  padding: 0 34px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffd92e 0%, #efb900 100%);
  box-shadow:
    0 13px 24px rgba(255, 200, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #050505;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
  margin-bottom: 20px;
}

.black-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(255, 195, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.black-shirt-product {
  position: relative;
  height: 300px;
  min-height: 300px;
  align-self: end;
  overflow: visible;
}

.black-shirt-img {
  position: absolute;
  left: 100px;
  right: auto;
  top: auto;
  bottom: -28px;
  width: min(470px, 47vw);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.55));
  animation: none !important;
  transform: none !important;
}

@media (min-width: 901px) {
  .black-shirt-content {
    width: min(1360px, calc(100% - 16px));
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }
}


/* =========================================
   Blue — ÍCONE DO BOTÃO COMPRAR AGORA
========================================= */

.blue-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex: 0 0 38px;
}

/* =========================================
   CAMISETA PRETA — ÍCONES
========================================= */

@media (min-width: 901px) {
  .black-shirt-features {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 22px 0 24px;
    margin-top: 60px ;
  }

  .black-shirt-feature {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .black-shirt-feature img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.38));
  }

  .black-shirt-feature span {
    color: #ffffff;
    font-size: 11px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
}


/* =========================================
   Black — ÍCONE DO BOTÃO COMPRAR AGORA
========================================= */

.black-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex: 0 0 38px;
}



/* =========================================
   POR QUE COMPRAR CONOSCO
========================================= */

.why-section {
  position: relative;
  width: 100%;
  min-height: 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 170, 62, 0.24), transparent 34%),
    linear-gradient(180deg, #00451b 0%, #003615 42%, #00280f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.why-bg-glow {
  position: absolute;
  left: 50%;
  top: -90px;
  width: 620px;
  height: 190px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 255, 94, 0.18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.why-container {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 120px));
  margin: 0 auto;
  padding: 13px 0 20px;
}

.why-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.why-title span {
  width: min(170px, 14vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 210, 0, 0.85), transparent);
}

.why-title small {
  color: #f7c600;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(247, 198, 0, 0.65);
}

.why-title h2 {
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  font-style: italic;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 22px;
}

.why-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.why-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  opacity: 0.92;
}

.why-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.26));
}

.why-item strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.why-item p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
}

.why-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.26),
    transparent
  );
}


/* Combos Promocionais */

.combos-section {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background: #001332;
  padding: 18px 0 30px;
}

.combos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/fundo-combo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.combos-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 118, 255, 0.32), transparent 32%),
    linear-gradient(180deg, rgba(0, 7, 25, 0.08), rgba(0, 7, 25, 0.22));
  pointer-events: none;
  z-index: 1;
}

.combos-content {
  position: relative;
  z-index: 2;
}

.combos-heading {
  text-align: center;
  margin-bottom: 15px;
}

.combos-heading h2 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-style: italic;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.combos-heading p {
  color: #ffd400;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  margin-top: 4px;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

.combo-card {
  position: relative;
  min-height: 285px;
  border-radius: 15px;
  padding: 26px 22px 18px;
  background:
    linear-gradient(180deg, rgba(0, 27, 78, 0.76), rgba(0, 13, 43, 0.92));
  border: 2px solid rgba(106, 191, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 26px rgba(31, 157, 255, 0.52),
    0 18px 34px rgba(0, 0, 0, 0.35);
  overflow: visible;
}

.combo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(0, 117, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.combo-card-featured {
  border-color: rgba(255, 221, 0, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 34px rgba(255, 217, 0, 0.7),
    0 20px 38px rgba(0, 0, 0, 0.42);
}

.combo-card-header {
  position: relative;
  z-index: 2;
}

.combo-card-header h3 {
  color: #ffffff;
  font-size: 31px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
  text-shadow: 0 5px 12px rgba(0, 0, 0, 0.45);
}

.combo-card-header span {
  display: block;
  color: #ffd400;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 4px;
}

.combo-discount {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd91f, #edae00);
  color: #06121f;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    0 10px 18px rgba(255, 203, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.combo-shirts {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 20px;
  height: 128px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.combo-shirts img {
  height: 125px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 16px rgba(0, 0, 0, 0.38));
}

.combo-shirts-one {
  right: 45px;
  top: 24px;
}

.combo-shirts-one img {
  height: 145px;
}

.combo-shirts-two {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 225px;
  height: 145px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.combo-shirts-two img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: 0;
}

.combo-shirts-three {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 270px;
  height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.combo-shirts-three img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.combo-info {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  margin-top: 36px;
  margin-bottom: 18px;
  padding-left: 0;
}

.combo-card:nth-child(1) .combo-info {
  margin-top: 96px;
}

.combo-info > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.combo-info img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.combo-info > div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.combo-info strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.combo-info small {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.85;
}

.combo-button {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(180deg, #19a83d, #006c1d);
  box-shadow:
    0 13px 24px rgba(0, 123, 33, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.combo-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 17px 30px rgba(0, 123, 33, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.combo-bottom-text {
  position: relative;
  z-index: 3;
  display: block;
  text-align: center;
  color: #ffd400;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 11px;
  letter-spacing: 0.5px;
}

.best-seller-badge {
  position: absolute;
  z-index: 5;
  top: -37px;
  right: 34px;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #ffd400;
  color: #082047;
  font-size: 15px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-7deg);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
  clip-path: polygon(
    50% 0%,
    61% 19%,
    82% 11%,
    79% 33%,
    100% 39%,
    82% 52%,
    93% 72%,
    70% 72%,
    64% 96%,
    50% 78%,
    35% 96%,
    30% 72%,
    7% 72%,
    18% 52%,
    0% 39%,
    21% 33%,
    18% 11%,
    39% 19%
  );
}

@media (min-width: 901px) {
  .combos-content {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
  }

  .combos-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 380px));
    justify-content: center;
    gap: 34px;
  }

  .combo-card {
    width: 100%;
  }
}


/* AJUSTE FINAL — COMBOS DESKTOP */

@media (min-width: 901px) {
  .combos-content {
    width: min(1540px, calc(100% - 32px));
    margin: 0 auto;
  }

  .combos-grid {
    max-width: 1460px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(390px, 1fr));
    justify-content: center;
    gap: 26px;
  }

  .combo-card {
    min-height: 285px;
    padding: 24px 24px 18px;
    overflow: hidden;
  }

  .combo-card-header h3 {
    font-size: 28px;
    line-height: 0.95;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .combo-card-header span {
    font-size: 10px;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .combo-discount {
    margin-top: 28px;
    padding: 9px 17px;
    font-size: 19px;
    border-radius: 13px;
  }

  .combo-shirts {
    top: 10px;
    right: 10px;
    height: 145px;
    justify-content: flex-end;
  }

  .combo-shirts-one {
    top: 20px;
    right: 34px;
    width: 150px;
  }

  .combo-shirts-one img {
    width: 100%;
    height: auto;
  }

  .combo-shirts-two {
    top: 14px;
    right: 8px;
    width: 241px;
    height: 135px;
  }

  .combo-shirts-two img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-left: 0;
  }

  .combo-shirts-three {
    top: 6px;
    right: 2px;
    width: 285px;
    height: 160px;
  }

  .combo-shirts-three img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-left: 0;
  }

  .combo-info {
    justify-content: center;
    gap: 48px;
    padding-left: 0;
    margin-top: 80px;
    margin-bottom: 18px;
  }

  .combo-card:nth-child(1) .combo-info {
    margin-top: 90px;
  }

  .combo-info img {
    width: 42px;
    height: 42px;
  }

  .combo-info strong {
    font-size: 12px;
    line-height: 1;
  }

  .combo-info small {
    font-size: 11px;
    line-height: 1;
  }

  .combo-button {
    height: 52px;
    font-size: 19px;
  }

  .combo-bottom-text {
    font-size: 12px;
    margin-top: 10px;
  }
}

@media (min-width: 901px) {
  .combo-card:nth-child(1) .combo-info {
    margin-top: 150px;
  }
}

@media (min-width: 901px) {
  .combo-card {
    position: relative;
    overflow: visible;
  }

  .combo-bottom-text {
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    z-index: 8;
    border-radius: 10px;

    margin-top: 5;
    padding: 2px 18px;

    background: #061b3e;
    color: #ffd400;
    border: 1px solid rgba(106, 191, 255, 0.82);

    box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 26px rgba(31, 157, 255, 0.52),
    0 18px 34px rgba(0, 0, 0, 0.35);

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;

    text-shadow: 0 0 8px rgba(255, 212, 0, 0.45);
  }
}

@media (min-width: 901px) {
  .combo-card:nth-child(3) .combo-bottom-text {
    background: linear-gradient(180deg, #fff06a 0%, #ffd400 42%, #d99a00 100%);
    color: #071628;
    border: 1px solid #ffe64a;

    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28) inset,
      0 0 28px rgba(255, 217, 0, 0.82),
      0 10px 24px rgba(255, 190, 0, 0.22);

    text-shadow: none;
  }
}

/* Contador */

.countdown-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 92px;
  background: #f5c400;
  display: flex;
  align-items: center;
}

.countdown-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/fundo-contador.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.countdown-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 211, 0, 0.05),
    rgba(255, 211, 0, 0),
    rgba(255, 211, 0, 0.08)
  );
  pointer-events: none;
  z-index: 1;
}

.countdown-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 12px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.countdown-icon {
  width: 118px;
  height: 102px;
  flex: 0 0 118px;
  display: grid;
  place-items: center;
}

.countdown-icon img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  transform: translateY(-4px);
}

.countdown-text {
  min-width: 390px;
}

.countdown-text h2 {
  color: #006b2d;
  font-size: clamp(28px, 2.9vw, 45px);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-style: italic;
}

.countdown-text strong {
  display: block;
  color: #006b2d;
  font-size: clamp(22px, 2.2vw, 35px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.countdown-text p {
  margin-top: 6px;
  color: #18210b;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.countdown-box {
  width: 78px;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(180deg, #087936 0%, #005522 100%);
  box-shadow:
    0 10px 18px rgba(0, 75, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
}

.countdown-box span {
  font-size: 34px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 1px;
}

.countdown-box small {
  margin-top: 7px;
  color: #ffe66a;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-timer b {
  color: #006b2d;
  font-size: 20px;
  font-weight: 900;
}

/* Footer */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 122, 46, 0.22), transparent 34%),
    linear-gradient(180deg, #061b12 0%, #020c08 100%);
  border-top: 3px solid #ffd400;
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 212, 0, 0.08), transparent 20%),
    radial-gradient(circle at 90% 70%, rgba(0, 87, 184, 0.16), transparent 24%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 52px;
  align-items: flex-start;
}

.footer-brand img {
  width: 128px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.footer-links h3,
.footer-support h3 {
  color: #ffd400;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 13px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ffd400;
  transform: translateX(4px);
}

.footer-support {
  display: flex;
  flex-direction: column;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-info-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-info-item strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-info-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.footer-bottom a:hover {
  color: #ffd400;
}

/* =========================================
   ANIMAÇÕES DE SCROLL — ENTRADA E SAÍDA
========================================= */

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal-section {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(0.985);
    filter: blur(8px);
    transition:
      opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
  }

  .scroll-reveal-section.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .scroll-reveal-section.is-after {
    opacity: 0;
    transform: translate3d(0, -55px, 0) scale(0.985);
    filter: blur(6px);
  }

  .scroll-reveal-section.is-before {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(0.985);
    filter: blur(8px);
  }

  /* Animação interna dos cards e blocos */
  .scroll-reveal-section .combo-card,
  .scroll-reveal-section .why-item,
  .scroll-reveal-section .countdown-content > *,
  .scroll-reveal-section .footer-content > *,
  .scroll-reveal-section .footer-bottom {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--reveal-delay, 0) * 80ms);
  }

  .scroll-reveal-section.is-visible .combo-card,
  .scroll-reveal-section.is-visible .why-item,
  .scroll-reveal-section.is-visible .countdown-content > *,
  .scroll-reveal-section.is-visible .footer-content > *,
  .scroll-reveal-section.is-visible .footer-bottom {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Delays dos cards de combo */
  .combo-card:nth-child(1) {
    --reveal-delay: 1;
  }

  .combo-card:nth-child(2) {
    --reveal-delay: 2;
  }

  .combo-card:nth-child(3) {
    --reveal-delay: 3;
  }

  /* Delays dos itens da seção "Por que comprar conosco" */
  .why-item:nth-child(1) {
    --reveal-delay: 1;
  }

  .why-item:nth-child(3) {
    --reveal-delay: 2;
  }

  .why-item:nth-child(5) {
    --reveal-delay: 3;
  }

  .why-item:nth-child(7) {
    --reveal-delay: 4;
  }

  .why-item:nth-child(9) {
    --reveal-delay: 5;
  }

  /* Movimento suave das imagens principais */
  .scroll-reveal-section .hero-product,
  .scroll-reveal-section .blue-shirt-product,
  .scroll-reveal-section .black-shirt-product {
    opacity: 0;
    transform: translate3d(40px, 0, 0) scale(0.98);
    transition:
      opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .scroll-reveal-section.is-visible .hero-product,
  .scroll-reveal-section.is-visible .blue-shirt-product,
  .scroll-reveal-section.is-visible .black-shirt-product {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 900px) {
  .scroll-reveal-section {
    transform: translate3d(0, 38px, 0) scale(0.99);
    filter: blur(4px);
  }

  .scroll-reveal-section.is-after {
    transform: translate3d(0, -28px, 0) scale(0.99);
    filter: blur(4px);
  }

  .scroll-reveal-section.is-before {
    transform: translate3d(0, 38px, 0) scale(0.99);
    filter: blur(4px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal-section {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.995);
    filter: blur(2px);
    transition:
      opacity 0.65s ease,
      transform 0.75s ease,
      filter 0.75s ease;
  }

  .scroll-reveal-section.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .scroll-reveal-section.is-after {
    opacity: 0.35;
    transform: translate3d(0, -16px, 0) scale(0.995);
    filter: blur(1px);
  }

  .scroll-reveal-section.is-before {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.995);
    filter: blur(2px);
  }

  .scroll-reveal-section .combo-card,
  .scroll-reveal-section .why-item,
  .scroll-reveal-section .countdown-content > *,
  .scroll-reveal-section .footer-content > *,
  .scroll-reveal-section .footer-bottom {
    transform: translate3d(0, 12px, 0);
  }
}

@media (max-width: 900px) {
  .scroll-reveal-section {
    transform: translate3d(0, 16px, 0) scale(0.998);
    filter: blur(1px);
  }

  .scroll-reveal-section.is-after {
    transform: translate3d(0, -10px, 0) scale(0.998);
    filter: blur(1px);
  }

  .scroll-reveal-section.is-before {
    transform: translate3d(0, 16px, 0) scale(0.998);
    filter: blur(1px);
  }
}

/* =========================================
   HERO — LOAD ANIMATION
========================================= */

/* =========================================
   HERO — ENTRADA ITEM POR ITEM
========================================= */

@media (prefers-reduced-motion: no-preference) {
  .hero-load-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: blur(3px);
    transition:
      opacity 0.7s ease,
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.8s ease;
    will-change: opacity, transform, filter;
  }

  .hero-load-item.is-hero-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  .site-header.hero-load-item {
    transform: translate3d(0, -14px, 0);
  }

  .site-header.hero-load-item.is-hero-visible {
    transform: translate3d(0, 0, 0);
  }

  .hero-logo-title.hero-load-item {
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  .hero-logo-title.hero-load-item.is-hero-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .hero-benefit.hero-load-item {
    transform: translate3d(0, 14px, 0) scale(0.98);
  }

  .hero-benefit.hero-load-item.is-hero-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .primary-button.hero-load-item {
    transform: translate3d(0, 16px, 0) scale(0.97);
  }

  .primary-button.hero-load-item.is-hero-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

.hero-shirt.hero-load-item {
  opacity: 0;
  transform: translate3d(38px, 20px, 0) scale(0.96);
  filter: blur(4px) drop-shadow(0 30px 35px rgba(0, 0, 0, 0.32));
  animation: none !important;
}

.hero-shirt.hero-load-item.is-hero-visible.is-floating {
  animation: floatShirt 5s ease-in-out infinite !important;
}

  .hero-shirt.hero-load-item.is-hero-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) drop-shadow(0 30px 35px rgba(0, 0, 0, 0.32));
  }
}

@keyframes headerLoad {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleLoad {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96) rotate(-2deg);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroButtonLoad {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroShirtLoad {
  from {
    opacity: 0;
    transform: translateX(42px) translateY(20px) scale(0.94) rotate(2deg);
    filter: blur(5px) drop-shadow(0 30px 35px rgba(0, 0, 0, 0.32));
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    filter: blur(0) drop-shadow(0 30px 35px rgba(0, 0, 0, 0.32));
  }
}


/* =========================================
   NAVBAR — ENTRADA REAL NO LOAD
========================================= */

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    filter: blur(4px);
    transition:
      opacity 0.75s ease,
      transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.9s ease;
    will-change: opacity, transform, filter;
  }

  .site-header.is-hero-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}


/* HERO — entrada suave da área da camiseta */

@media (prefers-reduced-motion: no-preference) {
  .hero-product.hero-load-item {
    opacity: 0;
    transform: translate3d(34px, 18px, 0) scale(0.985);
    filter: blur(3px);
    transition:
      opacity 0.95s ease,
      transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
      filter 1.1s ease;
    will-change: opacity, transform, filter;
  }

  .hero-product.hero-load-item.is-hero-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .hero-shirt {
    animation: floatShirt 5s ease-in-out infinite;
  }
}

/* =========================================
   CAMISETA AZUL — EFEITO PORTA DE CORRER
========================================= */
@media (prefers-reduced-motion: no-preference) {
  .blue-reveal-item {
    opacity: 0;
    transform: translate3d(55vw, 0, 0) scale(0.995) !important;
    clip-path: inset(0 0 0 100%);
    filter: blur(1.5px);
    transition:
      opacity 0.85s ease,
      transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 1.25s cubic-bezier(0.16, 1, 0.3, 1),
      filter 1.1s ease;
    transition-delay: calc(var(--blue-delay, 0) * 105ms);
    will-change: opacity, transform, clip-path, filter;
  }

  .blue-shirt-section.is-blue-visible .blue-reveal-item {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) !important;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }

  .blue-shirt-section:not(.is-blue-visible) .blue-reveal-item {
    opacity: 0;
    transform: translate3d(55vw, 0, 0) scale(0.995) !important;
    clip-path: inset(0 0 0 100%);
    filter: blur(1.5px);
  }

  .blue-shirt-img.blue-reveal-item {
    transform: translate3d(65vw, 0, 0) scale(0.985) !important;
    filter: blur(2px) drop-shadow(0 28px 32px rgba(0, 0, 0, 0.48));
  }

  .blue-shirt-section.is-blue-visible .blue-shirt-img.blue-reveal-item {
    transform: translate3d(0, 0, 0) scale(1) !important;
    filter: blur(0) drop-shadow(0 28px 32px rgba(0, 0, 0, 0.48));
  }

  .blue-button.blue-reveal-item {
    transform: translate3d(48vw, 0, 0) scale(0.985) !important;
  }

  .blue-shirt-section.is-blue-visible .blue-button.blue-reveal-item {
    transform: translate3d(0, 0, 0) scale(1) !important;
  }
}


/* =========================================
   CAMISETA PRETA — EFEITO PORTA DE CORRER
   Da esquerda para a direita
========================================= */

@media (prefers-reduced-motion: no-preference) {
  .black-shirt-section {
    overflow: hidden;
  }

  .black-reveal-item {
    opacity: 0;
    transform: translate3d(-55vw, 0, 0) scale(0.995) !important;
    clip-path: inset(0 100% 0 0);
    filter: blur(1.5px);
    transition:
      opacity 0.85s ease,
      transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 1.25s cubic-bezier(0.16, 1, 0.3, 1),
      filter 1.1s ease;
    transition-delay: calc(var(--black-delay, 0) * 105ms);
    will-change: opacity, transform, clip-path, filter;
  }

  .black-shirt-section.is-black-visible .black-reveal-item {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) !important;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }

  .black-shirt-section:not(.is-black-visible) .black-reveal-item {
    opacity: 0;
    transform: translate3d(-55vw, 0, 0) scale(0.995) !important;
    clip-path: inset(0 100% 0 0);
    filter: blur(1.5px);
  }

  .black-shirt-img.black-reveal-item {
    transform: translate3d(-65vw, 0, 0) scale(0.985) !important;
    filter: blur(2px) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.55));
  }

  .black-shirt-section.is-black-visible .black-shirt-img.black-reveal-item {
    transform: translate3d(0, 0, 0) scale(1) !important;
    filter: blur(0) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.55));
  }

  .black-button.black-reveal-item {
    transform: translate3d(-48vw, 0, 0) scale(0.985) !important;
  }

  .black-shirt-section.is-black-visible .black-button.black-reveal-item {
    transform: translate3d(0, 0, 0) scale(1) !important;
  }
}


/* =========================================
   HERO — SAÍDA APÓS O LOAD
   Só funciona depois da animação inicial
   Não afeta navbar
========================================= */

@media (prefers-reduced-motion: no-preference) {
  body.hero-load-complete .hero-section.is-hero-exiting .hero-logo-title,
  body.hero-load-complete .hero-section.is-hero-exiting .hero-text p,
  body.hero-load-complete .hero-section.is-hero-exiting .hero-benefit,
  body.hero-load-complete .hero-section.is-hero-exiting .primary-button,
  body.hero-load-complete .hero-section.is-hero-exiting .hero-product {
    opacity: 0 !important;
    transform: translate3d(0, -18px, 0) scale(0.99) !important;
    filter: blur(2px) !important;
    transition:
      opacity 0.65s ease,
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.75s ease;
  }

  body.hero-load-complete .hero-section.is-hero-exiting .hero-product {
    transform: translate3d(28px, -14px, 0) scale(0.99) !important;
  }
}


/* =========================================================
   PERSONALIZAÇÃO NA CAMISETA
========================================================= */

.product-gallery {
  position: relative;
}

.shirt-preview {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translateX(-50%);
  width: 160px;
  min-height: 90px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  z-index: 5;
  opacity: 0.82;
}

.shirt-preview.active {
  display: flex;
}

.shirt-preview span {
  color: #123f18;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.shirt-preview strong {
  display: block;
  margin-top: 6px;
  color: #123f18;
  font-size: 42px;
  line-height: 0.9;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* =========================================================
   CARRINHO LATERAL
========================================================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(420px, 100%);
  height: 100vh;
  background: #ffffff;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: 0.28s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  height: 78px;
  padding: 0 20px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header strong {
  display: block;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
}

.cart-drawer-header span {
  display: block;
  margin-top: 3px;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
}

.cart-drawer-header button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f3f3f3;
  color: #111111;
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
}

.cart-item-image {
  width: 74px;
  height: 86px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-info h3 {
  color: #111111;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 6px;
}

.cart-item-meta {
  color: #666666;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-item-price {
  color: #111111;
  font-size: 14px;
  font-weight: 900;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 999px;
  overflow: hidden;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: #f7f7f7;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
}

.cart-item-qty span {
  width: 28px;
  text-align: center;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
}

.cart-remove {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #d12b2b;
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
}

.cart-empty {
  display: none;
  padding: 28px 20px;
  color: #777777;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.cart-empty.active {
  display: block;
}

.cart-summary {
  padding: 16px;
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-summary span {
  color: #555555;
  font-size: 13px;
  font-weight: 800;
}

.cart-summary strong {
  color: #111111;
  font-size: 21px;
  font-weight: 900;
}

.cart-checkout {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: #18a84f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-clear {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 300;
  transform: translateX(-50%) translateY(20px);
  background: #111111;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.cart-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .shirt-preview {
    top: 31%;
    width: 115px;
    min-height: 70px;
  }

  .shirt-preview span {
    font-size: 12px;
  }

  .shirt-preview strong {
    font-size: 30px;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-header {
    height: 70px;
  }

  .cart-toast {
    bottom: 100px;
    width: max-content;
    max-width: calc(100% - 32px);
  }
}
/* =========================================================
   HERO MOBILE CORRETO
========================================================= */

@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
    background: #f5c400 !important;
  }

  .container {
    width: calc(100% - 24px) !important;
  }

  /* HEADER */
  .site-header {
    height: 72px !important;
    background-image: url("../assets/fundo-header.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .header-content {
    height: 72px !important;
    padding: 0 10px !important;
    gap: 8px !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .logo img {
    width: 112px !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .secure-store {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .shield-icon {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }

  .secure-store strong {
    font-size: 10px !important;
    line-height: 1 !important;
  }

  .secure-store small {
    font-size: 7px !important;
    line-height: 1 !important;
  }

  .cart-button {
    width: 34px !important;
    height: 34px !important;
  }

  .cart-button img {
    width: 28px !important;
    height: 28px !important;
  }

  .cart-button span {
    top: -4px !important;
    right: -4px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
  }

  .mobile-menu-button {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: #006b2d !important;
    flex: 0 0 40px !important;
  }

  .mobile-menu-button span {
    width: 20px !important;
    height: 3px !important;
    background: #ffffff !important;
  }

  .mobile-nav {
    top: 72px;
  }

  /* HERO */
  .hero-section {
    position: relative !important;
    min-height: auto !important;
    padding-top: 72px !important;
    background: #f5c400 !important;
    overflow: hidden !important;
  }

  .hero-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 72px 0 0 0 !important;
    z-index: 0 !important;
    background-image: url("../assets/fundo-mobile-amarelo.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important;
  }

  .hero-overlay {
    display: none !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 2 !important;
    min-height: auto !important;
    display: block !important;
    padding: 20px 0 26px !important;
  }

  .hero-text {
    position: relative !important;
    padding-top: 0 !important;
    transform: none !important;
    text-align: left !important;
    z-index: 3 !important;
  }

  .hero-spacer-mobile {
    display: none !important;
  }

  /* LOGO GRANDE DO HERO */
  .hero-logo-title {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    transform: none !important;
  }

  .hero-logo-title img {
    width: 100% !important;
    max-width: 340px !important;
    height: auto !important;
    filter: none !important;
  }

  /* TEXTO */
  .hero-text p {
    max-width: 245px !important;
    margin: 0 0 0 6px !important;
    font-size: 16px !important;
    line-height: 1.28 !important;
    font-weight: 800 !important;
    color: #111111 !important;
    text-align: left !important;
  }

  /* ÁREA DA CAMISETA */
  .hero-product {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 430px !important;
    min-height: 430px !important;
    margin-top: -8px !important;
    z-index: 2 !important;
  }

  .hero-shirt {
    display: block !important;
    position: absolute !important;
    width: 310px !important;
    max-width: none !important;
    top: 58px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-8%) !important;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.32)) !important;
    animation: none !important;
  }

  .promo-badge {
    display: block !important;
    position: absolute !important;
    width: 110px !important;
    left: 4px !important;
    top: 145px !important;
    z-index: 4 !important;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28)) !important;
    animation: none !important;
  }

  .hero-ball {
    display: block !important;
    position: absolute !important;
    width: 118px !important;
    left: 6px !important;
    bottom: 8px !important;
    z-index: 4 !important;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.34)) !important;
  }

  /* BENEFÍCIOS */
  .hero-benefits {
    width: 100% !important;
    margin: 10px 0 18px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    background: rgba(255, 220, 63, 0.96) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 22px rgba(94, 73, 0, 0.18) !important;
    overflow: hidden !important;
  }

  .hero-benefits .hero-benefit {
    min-height: 92px !important;
    padding: 10px 6px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    border-right: 1px solid rgba(0, 0, 0, 0.18) !important;
  }

  .hero-benefits .hero-benefit:last-child {
    border-right: 0 !important;
  }

  .hero-benefits div {
    padding-right: 0 !important;
    border-right: 0 !important;
  }

  .hero-benefit img {
    width: 30px !important;
    height: 30px !important;
  }

  .hero-benefit strong {
    font-size: 10px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
  }

  .hero-benefit small {
    font-size: 7px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  /* BOTÃO */
  .primary-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 74px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    border-radius: 14px !important;
    gap: 14px !important;
    font-size: 30px !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    box-shadow:
      0 8px 0 rgba(0, 45, 12, 0.5),
      0 14px 22px rgba(0, 80, 28, 0.24) !important;
  }

  .primary-button img {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
  }
}

/* TELAS AINDA MENORES */
@media (max-width: 390px) {
  .logo img {
    width: 102px !important;
  }

  .secure-store strong {
    font-size: 9px !important;
  }

  .secure-store small {
    font-size: 6px !important;
  }

  .hero-logo-title img {
    max-width: 315px !important;
  }

  .hero-text p {
    max-width: 230px !important;
    font-size: 15px !important;
  }

  .hero-product {
    height: 400px !important;
    min-height: 400px !important;
  }

  .hero-shirt {
    width: 292px !important;
    top: 62px !important;
  }

  .promo-badge {
    width: 102px !important;
    left: 2px !important;
    top: 150px !important;
  }

  .hero-ball {
    width: 108px !important;
  }

  .primary-button {
    height: 70px !important;
    font-size: 27px !important;
  }
}

/* =========================================================
   HERO MOBILE - AJUSTE FINO DE POSIÇÃO
========================================================= */

@media (max-width: 768px) {
  .hero-section {
    position: relative !important;
    padding-top: 72px !important;
    overflow: hidden !important;
    background: #f5c400 !important;
  }

  .hero-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 72px 0 0 0 !important;
    z-index: 0 !important;
    background-image: url("../assets/fundo-mobile-amarelo.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important;
  }

  .hero-overlay {
    display: none !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    padding: 18px 0 24px !important;
    min-height: 760px !important;
  }

  .hero-text {
    position: relative !important;
    z-index: 3 !important;
    padding-top: 0 !important;
    text-align: left !important;
  }

  .hero-spacer-mobile {
    display: none !important;
  }

  /* LOGO GRANDE DO HERO */
  .hero-logo-title {
    display: block !important;
    margin: 0 0 8px 0 !important;
  }

  .hero-logo-title img {
    width: 100% !important;
    max-width: 290px !important;
    height: auto !important;
    display: block !important;
  }

  /* TEXTO */
  .hero-text p {
    max-width: 170px !important;
    margin: 10px 0 0 4px !important;
    font-size: 15px !important;
    line-height: 1.28 !important;
    font-weight: 800 !important;
    color: #111111 !important;
    text-align: left !important;
  }

  /* PRODUTO */
  .hero-product {
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 178px !important;
    height: 360px !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .hero-shirt {
    display: block !important;
    position: absolute !important;
    width: 255px !important;
    max-width: none !important;
    top: 58px !important;
    left: 50% !important;
    transform: translateX(-6%) !important;
    z-index: 3 !important;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.30)) !important;
    animation: none !important;
  }

  .promo-badge {
    display: block !important;
    position: absolute !important;
    width: 94px !important;
    left: 0 !important;
    top: 155px !important;
    z-index: 4 !important;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22)) !important;
  }

  .hero-ball {
    display: block !important;
    position: absolute !important;
    width: 98px !important;
    left: 8px !important;
    top: 280px !important;
    z-index: 4 !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.30)) !important;
  }

  /* BENEFÍCIOS */
  .hero-benefits {
    width: 100% !important;
    margin: 355px 0 16px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    background: rgba(255, 219, 63, 0.96) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 18px rgba(90, 68, 0, 0.16) !important;
  }

  .hero-benefits .hero-benefit {
    min-height: 92px !important;
    padding: 10px 6px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    border-right: 1px solid rgba(0, 0, 0, 0.18) !important;
  }

  .hero-benefits .hero-benefit:last-child {
    border-right: 0 !important;
  }

  .hero-benefit img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
  }

  .hero-benefit strong {
    font-size: 10px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }

  .hero-benefit small {
    font-size: 7px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  /* BOTÃO */
  .primary-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 68px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    border-radius: 14px !important;
    gap: 12px !important;
    font-size: 24px !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    box-shadow:
      0 7px 0 rgba(0, 45, 12, 0.48),
      0 12px 18px rgba(0, 80, 28, 0.22) !important;
  }

  .primary-button img {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
  }
}

/* AJUSTE EXTRA PARA CELULARES PEQUENOS */
@media (max-width: 390px) {
  .hero-logo-title img {
    max-width: 276px !important;
  }

  .hero-text p {
    max-width: 162px !important;
    font-size: 14px !important;
  }

  .hero-product {
    top: 172px !important;
    height: 345px !important;
  }

  .hero-shirt {
    width: 285px !important;
    top: 60px !important;
    right: 150px;
  }

  

  .hero-benefits {
    margin-top: 340px !important;
  }

  .primary-button {
    height: 66px !important;
    font-size: 22px !important;
  }
}


/* =========================================================
   CAMISA AZUL - MOBILE
========================================================= */

@media (max-width: 768px) {
  .blue-shirt-section {
    position: relative !important;
    overflow: hidden !important;
    min-height: auto !important;
    background: #031a52 !important;
    padding: 0 !important;
  }

  .blue-shirt-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: url("../assets/fundo-mobile-azul.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important;
  }

  .blue-shirt-section::after {
    display: none !important;
  }

  .blue-shirt-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: auto !important;
    padding: 22px 0 26px !important;
  }

  /* ÁREA DO PRODUTO */
  .blue-shirt-product {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    overflow: visible !important;
  }

  .blue-shirt-img {
    position: absolute !important;
    width: 295px !important;
    max-width: none !important;
    left: 50% !important;
    top: 10px !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.48)) !important;
    animation: none !important;
  }

  .blue-ball {
    display: block !important;
    position: absolute !important;
    width: 92px !important;
    left: 8px !important;
    top: 170px !important;
    z-index: 3 !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34)) !important;
  }

  /* BLOCO DE TEXTO */
  .blue-shirt-text {
    width: 100% !important;
    max-width: 360px !important;
    padding-top: 0 !important;
    text-align: center !important;
  }

  .blue-shirt-text h2 {
    margin: 0 0 10px !important;
    font-size: 38px !important;
    line-height: 0.96 !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-style: italic !important;
  }

  .blue-stars {
    order: 2;
    margin: 0 0 8px !important;
    color: #ffd400 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    letter-spacing: 4px !important;
    text-shadow: 0 0 12px rgba(255, 212, 0, 0.45) !important;
  }

  .blue-edition {
    display: block !important;
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }

  .blue-shirt-text p {
    max-width: 330px !important;
    margin: 0 auto 20px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
  }

  /* ÍCONES */
  .blue-shirt-features {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    align-items: start !important;
    margin: 0 0 22px !important;
  }

  .blue-shirt-feature {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    position: relative !important;
    padding: 0 8px !important;
    text-align: center !important;
  }

  .blue-shirt-feature::after {
    content: "" !important;
    position: absolute !important;
    top: 8px !important;
    right: 0 !important;
    width: 1px !important;
    height: 42px !important;
    background: rgba(255, 208, 0, 0.45) !important;
  }

  .blue-shirt-feature:last-child::after {
    display: none !important;
  }

  .blue-shirt-feature img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28)) !important;
  }

  .blue-shirt-feature span {
    color: #ffffff !important;
    font-size: 10px !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px !important;
  }

  /* BOTÃO */
  .blue-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 62px !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    background: linear-gradient(180deg, #ffd829 0%, #e4af00 100%) !important;
    color: #06121f !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;

    box-shadow:
      0 10px 22px rgba(255, 195, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  }

  .blue-button img {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    object-fit: contain !important;
  }
}

/* AJUSTE EXTRA PARA TELAS MENORES */
@media (max-width: 390px) {
  .blue-shirt-product {
    height: 385px !important;
    min-height: 385px !important;
  }

  .blue-shirt-img {
    width: 280px !important;
    top: 14px !important;
  }

  .blue-ball {
    width: 86px !important;
    left: 4px !important;
    top: 175px !important;
  }

  .blue-shirt-text h2 {
    font-size: 34px !important;
  }

  .blue-shirt-text p {
    max-width: 310px !important;
    font-size: 13px !important;
  }

  .blue-button {
    height: 60px !important;
    font-size: 15px !important;
  }
}


/* =========================================================
   CAMISA AZUL MOBILE - CENTRALIZAR CAMISETA
========================================================= */

@media (max-width: 768px) {
  .blue-shirt-product {
    position: relative !important;
    width: 100% !important;
    height: 390px !important;
    min-height: 390px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .blue-shirt-section .blue-shirt-product .blue-shirt-img,
  .blue-shirt-section.is-blue-visible .blue-shirt-img.blue-reveal-item {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 12px !important;
    bottom: auto !important;

    width: 300px !important;
    max-width: none !important;

    transform: translateX(-50%) !important;
    animation: none !important;

    z-index: 3 !important;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.48)) !important;
  }

  .blue-ball {
    left: 18px !important;
    top: 178px !important;
    width: 92px !important;
    z-index: 4 !important;
  }
}

@media (max-width: 390px) {
  .blue-shirt-product {
    height: 460px !important;
    min-height: 370px !important;
  }

  .blue-shirt-section .blue-shirt-product .blue-shirt-img,
  .blue-shirt-section.is-blue-visible .blue-shirt-img.blue-reveal-item {
    width: 285px !important;
    top: 140px !important;
  }

  .blue-ball {
    left: 14px !important;
    top: 174px !important;
    width: 86px !important;
  }
}

@media (max-width: 768px) {
  .blue-shirt-product {
    position: relative !important;
    width: 100% !important;
    height: 390px !important;
    min-height: 390px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .blue-shirt-section .blue-shirt-product .blue-shirt-img,
  .blue-shirt-section.is-blue-visible .blue-shirt-img.blue-reveal-item {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 42px !important;
    bottom: auto !important;
    width: 300px !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
    animation: none !important;
    z-index: 3 !important;
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.42)) !important;

    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  }

  .blue-ball {
    left: 18px !important;
    top: 182px !important;
    width: 92px !important;
    z-index: 4 !important;
  }
}

@media (max-width: 390px) {
  .blue-shirt-product {
    height: 370px !important;
    min-height: 370px !important;
  }

  .blue-shirt-section .blue-shirt-product .blue-shirt-img,
  .blue-shirt-section.is-blue-visible .blue-shirt-img.blue-reveal-item {
    width: 285px !important;
    top: 86px !important;
  }

  .blue-ball {
    left: 14px !important;
    top: 180px !important;
    width: 86px !important;
  }
}



/* =========================================================
   CAMISETA PRETA MOBILE - POSIÇÃO FINAL CORRIGIDA
========================================================= */

@media (max-width: 768px) {
  .black-shirt-section {
    position: relative !important;
    overflow: hidden !important;
    background: #050505 !important;
    padding: 0 !important;
  }

  .black-shirt-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: url("../assets/fundo-mobile-preto.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important;
  }

  .black-shirt-section::after {
    display: none !important;
  }

  .black-shirt-content {
    position: relative !important;
    z-index: 2 !important;
    min-height: 620px !important;
    padding: 22px 12px 22px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  /* Faz os elementos internos entrarem na ordem do flex */
  .black-shirt-text {
    display: contents !important;
  }

  .black-shirt-text h2 {
    order: 1 !important;
    margin: 0 0 9px !important;
    color: #ffffff !important;
    font-size: 32px !important;
    line-height: 0.95 !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    font-style: italic !important;
    text-transform: uppercase !important;
  }

  .black-stars {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 0 15px !important;
  }

  .black-stars span {
    color: #ffd400 !important;
    font-size: 15px !important;
    letter-spacing: 3px !important;
  }

  .black-stars strong {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }

  .black-shirt-text p {
    order: 3 !important;
    max-width: 245px !important;
    margin: 0 0 0 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
  }

  /* Camiseta vem antes dos ícones e do botão */
  .black-shirt-product {
    order: 4 !important;
    position: relative !important;
    width: 100% !important;
    height: 270px !important;
    min-height: 270px !important;
    margin: -8px 0 4px !important;
    overflow: visible !important;
  }

  .black-shirt-img,
  .black-shirt-img.black-reveal-item,
  .black-shirt-section.is-black-visible .black-shirt-img.black-reveal-item {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 50px !important;
    bottom: auto !important;

    width: 265px !important;
    max-width: none !important;

    transform: translateX(-50%) !important;
    animation: none !important;
    z-index: 3 !important;

    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.52)) !important;

    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
  }

  .black-ball {
    display: block !important;
    position: absolute !important;
    right: 4px !important;
    bottom: 22px !important;
    width: 92px !important;
    z-index: 4 !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45)) !important;
  }

  /* Ícones depois da camiseta */
  .black-shirt-features {
    order: 5 !important;
    width: 100% !important;
    margin: 0 0 20px !important;
    top: 30px;

    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 12px !important;
  }

  .black-shirt-feature {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 38px !important;
  }

  .black-shirt-feature img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    flex: 0 0 30px !important;
  }

  .black-shirt-feature span {
    color: #ffffff !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }

  /* Botão por último */
  .black-button,
  .black-button.black-reveal-item,
  .black-shirt-section.is-black-visible .black-button.black-reveal-item {
    order: 6 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 62px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;

    border-radius: 12px !important;
    background: linear-gradient(180deg, #ffd829 0%, #e5ad00 100%) !important;
    color: #06121f !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;

    transform: none !important;

    box-shadow:
      0 10px 22px rgba(255, 195, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  }

  .black-button img {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
  }



}


/* =========================================================
   CAMISETA PRETA MOBILE - FUNDO MENOS ESPREMIDO
========================================================= */

@media (max-width: 768px) {
  .black-shirt-section {
    position: relative !important;
    overflow: hidden !important;
    background: #050505 !important;
    padding: 0 !important;
  }

  .black-shirt-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: url("../assets/fundo-mobile-preto.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .black-shirt-content {
    position: relative !important;
    z-index: 2 !important;
    min-height: 720px !important;   /* antes estava muito baixo */
    padding: 28px 14px 34px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .black-shirt-text {
    display: contents !important;
  }

  .black-shirt-text h2 {
    order: 1 !important;
    margin: 0 0 10px !important;
    font-size: 34px !important;
    line-height: 0.95 !important;
    font-weight: 900 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-style: italic !important;
  }

  .black-stars {
    order: 2 !important;
    margin: 0 0 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .black-shirt-text p {
    order: 3 !important;
    max-width: 250px !important;
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
  }

  /* MAIS ESPAÇO PARA A CAMISETA */
  .black-shirt-product {
    order: 4 !important;
    position: relative !important;
    width: 100% !important;
    height: 340px !important;
    min-height: 340px !important;
    margin: 8px 0 10px !important;
    overflow: visible !important;
  }

  .black-shirt-img,
  .black-shirt-img.black-reveal-item,
  .black-shirt-section.is-black-visible .black-shirt-img.black-reveal-item {
    position: absolute !important;
    left: 50% !important;
    top: 6px !important;
    width: 275px !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
    animation: none !important;
    z-index: 3 !important;
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.52)) !important;

    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 87%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 87%, transparent 100%);
  }

  .black-ball {
    display: block !important;
    position: absolute !important;
    right: 8px !important;
    bottom: 18px !important;
    width: 96px !important;
    z-index: 4 !important;
  }

  .black-shirt-features {
    order: 5 !important;
    width: 100% !important;
    margin: 66px 0 22px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 12px !important;
    
  }

  .black-button,
  .black-button.black-reveal-item,
  .black-shirt-section.is-black-visible .black-button.black-reveal-item {
    order: 6 !important;
    width: 100% !important;
    height: 64px !important;
    margin: 0 auto !important;
    border-radius: 14px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 390px) {
  .black-shirt-content {
    min-height: 750px !important;
    padding: 24px 12px 30px !important;
  }

  .black-shirt-product {
    height: 180px !important;
    min-height: 280px !important;
    margin-top: 30px !important ;
  }

  .black-shirt-img,
  .black-shirt-img.black-reveal-item,
  .black-shirt-section.is-black-visible .black-shirt-img.black-reveal-item {
    width: 258px !important;
    height: 258px !important;
    top: 80px !important;
  }

  .black-ball {
    width: 88px !important;
    bottom: 18px !important;
  }
}

/* =========================================================
   POR QUE COMPRAR CONOSCO - CARROSSEL MOBILE
========================================================= */

@media (max-width: 768px) {
  .why-section {
    min-height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(0, 170, 62, 0.26), transparent 42%),
      linear-gradient(180deg, #00451b 0%, #003615 48%, #00280f 100%) !important;
  }

  .why-container {
    width: 100% !important;
    padding: 18px 0 20px !important;
  }

  .why-title {
    width: calc(100% - 42px) !important;
    margin: 0 auto 18px !important;
    gap: 8px !important;
  }

  .why-title span {
    flex: 1 !important;
    width: auto !important;
    max-width: 54px !important;
  }

  .why-title small {
    font-size: 17px !important;
  }

  .why-title h2 {
    max-width: 230px !important;
    color: #ffffff !important;
    font-size: 23px !important;
    line-height: 1.03 !important;
    letter-spacing: 3px !important;
    text-align: center !important;
    font-weight: 900 !important;
  }

  .why-grid {
    width: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    padding: 0 28px 4px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .why-grid::-webkit-scrollbar {
    display: none !important;
  }

  .why-divider {
    display: none !important;
  }

  .why-item {
    flex: 0 0 100% !important;
    scroll-snap-align: center !important;

    min-height: 122px !important;
    padding: 18px 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;

    border-radius: 18px !important;
    background: rgba(0, 45, 18, 0.38) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 18px 32px rgba(0, 0, 0, 0.18) !important;
  }

  .why-icon {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px !important;
  }

  .why-icon img {
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .why-item strong {
    color: #ffffff !important;
    font-size: 19px !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: 0.6px !important;
  }

  .why-item p {
    margin-top: 5px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  .why-carousel-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9px !important;
    margin-top: 14px !important;
  }

  .why-carousel-dot {
    width: 8px !important;
    height: 8px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.35) !important;
    padding: 0 !important;
    transition: 0.25s ease !important;
  }

  .why-carousel-dot.active {
    width: 22px !important;
    background: #f7c600 !important;
  }
}

@media (min-width: 769px) {
  .why-carousel-dots {
    display: none !important;
  }
}

/* =========================================================
   COMBOS - CARROSSEL MOBILE
========================================================= */

@media (max-width: 768px) {
  .combos-section {
    overflow: hidden !important;
  }

  .combos-content {
    padding-bottom: 24px !important;
  }

  .combos-heading {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .combos-heading h2 {
    font-size: 26px !important;
    line-height: 0.98 !important;
    letter-spacing: 1px !important;
  }

  .combos-heading p {
    font-size: 14px !important;
    margin-top: 6px !important;
  }

  .combos-grid {
    width: 100% !important;
    display: flex !important;
    gap: 0 !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;

    padding: 0 18px 6px !important;
  }

  .combos-grid::-webkit-scrollbar {
    display: none !important;
  }

  .combo-card {
    flex: 0 0 100% !important;
    scroll-snap-align: center !important;

    min-width: 0 !important;
    margin: 0 !important;
  }

  /* opcional: deixa o card um pouco menor que a tela para dar cara de carrossel
     se quiser usar isso, substitui o 100% acima por 88% */

  .combos-carousel-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9px !important;
    margin-top: 14px !important;
  }

  .combos-carousel-dot {
    width: 8px !important;
    height: 8px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.35) !important;
    padding: 0 !important;
    transition: 0.25s ease !important;
    cursor: pointer !important;
  }

  .combos-carousel-dot.active {
    width: 22px !important;
    background: #f7c600 !important;
  }
}

@media (min-width: 769px) {
  .combos-carousel-dots {
    display: none !important;
  }
}



/* =========================================================
   COMBOS MOBILE - AJUSTE DE TAMANHO E RESPIRO DOS CARDS
========================================================= */

@media (max-width: 768px) {
  .combos-content {
    padding-bottom: 26px !important;
  }

  .combos-grid {
    width: 100% !important;
    display: flex !important;
    gap: 14px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;

    padding: 0 18px 8px !important;
  }

  .combos-grid::-webkit-scrollbar {
    display: none !important;
  }

  .combo-card {
    flex: 0 0 88% !important;
    scroll-snap-align: center !important;

    min-height: 430px !important;
    padding: 18px 18px 16px !important;
    margin: 0 !important;

    border-radius: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .combo-card.combo-card-featured {
    min-height: 430px !important;
  }

  /* topo */
  .combo-card-header {
    margin-bottom: 8px !important;
  }

  .combo-card-header h3 {
    font-size: 24px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }

  .combo-card-header span {
    font-size: 12px !important;
    line-height: 1.05 !important;
  }

  .combo-discount {
    margin: 4px 0 10px !important;
    font-size: 13px !important;
    padding: 10px 18px !important;
    border-radius: 14px !important;
    align-self: flex-start !important;
  }

  /* imagens das camisetas */
  .combo-shirts {
    margin: 2px 0 14px !important;
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .combo-shirts img {
    max-width: 100% !important;
    max-height: 118px !important;
    object-fit: contain !important;
  }

  .combo-shirts-one img {
    max-height: 120px !important;
  }

  .combo-shirts-two img {
    max-height: 125px !important;
  }

  .combo-shirts-three img {
    max-height: 128px !important;
  }

  /* infos */
  .combo-info {
    margin: 2px 0 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px 12px !important;
    align-items: start !important;
  }

  .combo-info > div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .combo-info img {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }

  .combo-info strong {
    font-size: 11px !important;
    line-height: 1 !important;
  }

  .combo-info small {
    font-size: 9px !important;
    line-height: 1.05 !important;
  }

  /* botão */
  .combo-button {
    width: 100% !important;
    height: 56px !important;
    margin: 0 0 12px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  /* texto de baixo */
  .combo-bottom-text {
    display: block !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    margin-top: auto !important;
    padding-top: 2px !important;
  }
}

@media (max-width: 390px) {
  .combo-card {
    flex: 0 0 90% !important;
    min-height: 410px !important;
    padding: 16px 16px 14px !important;
  }

  .combo-card-header h3 {
    font-size: 22px !important;
  }

  .combo-shirts {
    min-height: 112px !important;
    margin-bottom: 12px !important;
  }

  .combo-shirts img {
    max-height: 108px !important;
  }

  .combo-shirts-two img {
    max-height: 114px !important;
  }

  .combo-shirts-three img {
    max-height: 118px !important;
  }

  .combo-info {
    gap: 8px 10px !important;
    margin-bottom: 14px !important;
  }

  .combo-button {
    height: 54px !important;
    font-size: 17px !important;
  }

  .combo-bottom-text {
    font-size: 11px !important;
  }
}

/* =========================================================
   COMBOS MOBILE - AJUSTE FINAL DE ESPAÇAMENTO
========================================================= */

@media (max-width: 768px) {
  .combos-section {
    overflow: hidden !important;
  }

  .combos-content {
    padding: 26px 0 28px !important;
  }

  .combos-heading {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .combos-heading h2 {
    font-size: 28px !important;
    line-height: 0.95 !important;
    letter-spacing: 2px !important;
  }

  .combos-heading p {
    font-size: 15px !important;
    margin-top: 6px !important;
  }

  .combos-grid {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    padding: 0 18px 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .combos-grid::-webkit-scrollbar {
    display: none !important;
  }

  .combo-card {
    flex: 0 0 88% !important;
    scroll-snap-align: center !important;

    min-height: 360px !important;
    height: auto !important;

    padding: 18px 18px 16px !important;
    margin: 0 !important;

    border-radius: 18px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .combo-card.combo-card-featured {
    min-height: 360px !important;
  }

  .combo-card-header {
    margin: 0 0 8px !important;
  }

  .combo-card-header h3 {
    font-size: 24px !important;
    line-height: 1 !important;
    margin: 0 0 4px !important;
  }

  .combo-card-header span {
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .combo-discount {
    position: relative !important;
    left: auto !important;
    top: auto !important;

    width: fit-content !important;
    margin: 2px 0 8px !important;
    padding: 9px 18px !important;

    border-radius: 14px !important;

    font-size: 13px !important;
    line-height: 1 !important;
  }

  .combo-shirts {
    width: 100% !important;
    min-height: 112px !important;
    height: 112px !important;

    margin: 0 0 12px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;
  }

  .combo-shirts img {
    max-width: 100% !important;
    max-height: 112px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .combo-shirts-one img {
    max-height: 116px !important;
  }

  .combo-shirts-two img {
    max-height: 118px !important;
  }

  .combo-shirts-three img {
    max-height: 118px !important;
  }

  .combo-info {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;

    margin: 0 0 14px !important;
  }

  .combo-info > div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .combo-info img {
    width: 25px !important;
    height: 25px !important;
    flex: 0 0 25px !important;
  }

  .combo-info strong {
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: 0.2px !important;
  }

  .combo-info small {
    font-size: 9px !important;
    line-height: 1 !important;
  }

  .combo-button {
    width: 100% !important;
    height: 54px !important;

    margin: 0 0 10px !important;

    border-radius: 12px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .combo-bottom-text {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: 12px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;

    color: #ffd400 !important;
  }
}

@media (max-width: 390px) {
  .combo-card {
    flex: 0 0 90% !important;
    min-height: 350px !important;
    padding: 16px 16px 15px !important;
  }

  .combo-card-header h3 {
    font-size: 22px !important;
  }

  .combo-shirts {
    height: 106px !important;
    min-height: 106px !important;
    margin-bottom: 11px !important;
  }

  .combo-shirts img {
    max-height: 106px !important;
  }

  .combo-shirts-two img,
  .combo-shirts-three img {
    max-height: 110px !important;
  }

  .combo-info {
    margin-bottom: 13px !important;
  }

  .combo-button {
    height: 52px !important;
    font-size: 17px !important;
  }

  .combo-bottom-text {
    font-size: 11px !important;
  }
}


/* =========================================================
   COMBOS MOBILE - AJUSTE SOMENTE DO CARD 1 CAMISA
========================================================= */

@media (max-width: 768px) {
  .combos-grid .combo-card:nth-child(1) {
    min-height: 360px !important;
    padding: 18px 18px 16px !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-card-header {
    margin-bottom: 10px !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-shirts-one {
    height: 135px !important;
    min-height: 135px !important;
    margin: 2px 0 14px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-shirts-one img {
    width: 150px !important;
    max-width: 150px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: translateY(-2px) scale(1.12) !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-info {
    margin: 0 0 16px !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-button {
    margin-bottom: 12px !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-bottom-text {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 390px) {
  .combos-grid .combo-card:nth-child(1) .combo-shirts-one {
    height: 128px !important;
    min-height: 128px !important;
  }

  .combos-grid .combo-card:nth-child(1) .combo-shirts-one img {
    width: 78px !important;
    max-width: 78px !important;
    transform: translateY(-2px) scale(1.12) !important;
  }
}

@media (max-width: 768px) {
  .combos-grid {
    overscroll-behavior-x: contain !important;
    scroll-padding-left: 18px !important;
  }
}















/* =========================================================
   CONTADOR MOBILE - DESIGN NOVO
========================================================= */

.countdown-shirt-mobile,
.countdown-mobile-leaf {
  display: none;
}

@media (max-width: 768px) {
  .countdown-section {
    position: relative !important;
    width: 100% !important;
    min-height: 650px !important;
    overflow: hidden !important;
    background: #f5c400 !important;
    display: block !important;
    padding: 0 !important;
  }

  .countdown-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: url("../assets/fundo-mobile-contador.png") !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top center !important;
  }

  .countdown-section::after {
    display: none !important;
  }

  .countdown-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    min-height: 650px !important;
    margin: 0 auto !important;
    padding: 32px 18px 28px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .countdown-icon {
    display: none !important;
  }

  .countdown-mobile-leaf {
    display: block !important;
    width: 34px !important;
    height: 40px !important;
    margin: 0 auto 10px !important;
    font-size: 0 !important;
    position: relative !important;
  }

  .countdown-mobile-leaf::before {
    content: "❦" !important;
    display: block !important;
    color: #006b2d !important;
    font-size: 34px !important;
    line-height: 1 !important;
    transform: rotate(180deg) !important;
  }

  .countdown-text {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .countdown-text h2 {
    max-width: 315px !important;
    margin: 0 auto !important;
    color: #061c30 !important;
    font-size: 31px !important;
    line-height: 0.98 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-style: italic !important;
  }

  .countdown-text strong {
    display: block !important;
    max-width: 315px !important;
    margin: 0 auto !important;
    color: #061c30 !important;
    font-size: 31px !important;
    line-height: 0.98 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-style: italic !important;
  }

  .countdown-text p {
    margin: 9px auto 0 !important;
    color: #071407 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }

  .countdown-shirt-mobile {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 310px !important;
    margin: 10px 0 0 !important;
    z-index: 3 !important;
    pointer-events: none !important;
  }

  .countdown-shirt-mobile img {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: 390px !important;
    max-width: none !important;
    height: auto !important;
    transform: translateX(-50%) !important;
    object-fit: contain !important;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.32)) !important;
  }

 .countdown-timer {
  width: calc(100% + 36px) !important;
  margin: 14px -18px 0 !important;
  min-height: 110px !important;

  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: stretch !important;
  gap: 0 !important;

  background: rgba(245, 196, 0, 0.88) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 -12px 24px rgba(126, 94, 0, 0.08) !important;
  position: relative !important;
  z-index: 5 !important;
}

  .countdown-timer b {
    display: none !important;
  }

  .countdown-box {
    width: 100% !important;
    height: 110px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #06121f !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .countdown-box:last-child {
    border-right: 0 !important;
  }

  .countdown-box span {
    color: #06121f !important;
    font-size: 44px !important;
    line-height: 0.9 !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
  }

  .countdown-box small {
    margin-top: 10px !important;
    color: #06121f !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }
}

/* AJUSTE PARA CELULARES MENORES */
@media (max-width: 390px) {
  .countdown-section {
    min-height: 620px !important;
  }

  .countdown-content {
    min-height: auto !important;
    padding-top: 26px !important;
  }

  .countdown-text h2,
  .countdown-text strong {
    max-width: 300px !important;
    font-size: 28px !important;
  }

  .countdown-text p {
    font-size: 13px !important;
  }

  .countdown-shirt-mobile {
    height: 295px !important;
    margin-top: 8px !important;
  }

  .countdown-shirt-mobile img {
    width: 365px !important;
  }

  .countdown-timer {
    min-height: 102px !important;
  }

  .countdown-box {
    height: 102px !important;
  }

  .countdown-box span {
    font-size: 39px !important;
  }

  .countdown-box small {
    font-size: 11px !important;
  }

  .countdown-section,
.countdown-content,
.countdown-timer,
.countdown-box,
.countdown-box span,
.countdown-box small {
  overflow-anchor: none !important;
}

}


/* =========================================================
   CORREÇÃO - PARAR PÁGINA DE PUXAR PARA CIMA NO FINAL
========================================================= */

.countdown-section,
.site-footer {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  overflow-anchor: none !important;
}

.countdown-section *,
.site-footer * {
  overflow-anchor: none !important;
}

@media (max-width: 768px) {
  .countdown-section,
  .site-footer {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .countdown-section.scroll-reveal-section,
  .site-footer.scroll-reveal-section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .countdown-section.scroll-reveal-section.is-visible,
  .countdown-section.scroll-reveal-section.is-after,
  .countdown-section.scroll-reveal-section.is-before,
  .site-footer.scroll-reveal-section.is-visible,
  .site-footer.scroll-reveal-section.is-after,
  .site-footer.scroll-reveal-section.is-before {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* =========================================================
   FOOTER MOBILE - VA AA I BRASIL
========================================================= */

@media (max-width: 768px) {
  .site-footer {
    position: relative !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 20% 0%, rgba(0, 118, 46, 0.18), transparent 32%),
      linear-gradient(180deg, #03160e 0%, #020b08 100%) !important;
    border-top: 0 !important;
    padding: 0 !important;
  }

  .site-footer::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
      radial-gradient(circle at 85% 20%, rgba(0, 87, 184, 0.12), transparent 24%),
      radial-gradient(circle at 15% 80%, rgba(0, 120, 50, 0.12), transparent 26%) !important;
    pointer-events: none !important;
  }

  .footer-content {
    position: relative !important;
    z-index: 2 !important;
    width: calc(100% - 28px) !important;
    margin: 0 auto !important;
    padding: 38px 0 30px !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 26px !important;
    align-items: start !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
  }

  .footer-brand img {
    width: 118px !important;
    margin: 0 0 18px !important;
  }

  .footer-brand p {
    max-width: 235px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 17px !important;
    line-height: 1.32 !important;
    font-weight: 800 !important;
  }

  .footer-links,
  .footer-support {
    min-width: 0 !important;
  }

  .footer-links h3,
  .footer-support h3 {
    margin: 0 0 18px !important;
    color: #ffd400 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
  }

  .footer-links a {
    display: block !important;
    width: fit-content !important;
    margin: 0 0 13px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
  }

  .footer-support {
    gap: 0 !important;
  }

  .footer-info-item {
    display: grid !important;
    grid-template-columns: 28px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 16px !important;
  }

  .footer-info-item img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.92 !important;
  }

  .footer-info-item strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }

  .footer-info-item span {
    display: block !important;
    margin-top: 3px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  .footer-bottom {
    position: relative !important;
    z-index: 2 !important;
    width: calc(100% - 28px) !important;
    margin: 0 auto !important;
    padding: 18px 0 22px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;

    display: grid !important;
    grid-template-columns: 1.35fr 1fr !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .footer-bottom span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
  }

  .footer-bottom div {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .footer-bottom a {
    color: #ffffff !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    text-align: left !important;
  }
}

/* AJUSTE PARA CELULARES PEQUENOS */
@media (max-width: 390px) {
  .footer-content {
    width: calc(100% - 24px) !important;
    gap: 28px 20px !important;
  }

  .footer-brand img {
    width: 108px !important;
  }

  .footer-brand p {
    max-width: 210px !important;
    font-size: 16px !important;
  }

  .footer-links h3,
  .footer-support h3 {
    font-size: 13px !important;
    letter-spacing: 1.6px !important;
  }

  .footer-links a {
    font-size: 11px !important;
  }

  .footer-info-item {
    grid-template-columns: 24px 1fr !important;
    gap: 8px !important;
  }

  .footer-info-item img {
    width: 22px !important;
    height: 22px !important;
  }

  .footer-info-item strong {
    font-size: 10px !important;
  }

  .footer-info-item span {
    font-size: 9px !important;
  }

  .footer-bottom {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1.25fr 1fr !important;
    gap: 14px !important;
  }

  .footer-bottom span,
  .footer-bottom a {
    font-size: 9px !important;
  }
}