/* ===== RESET & BASE ===== */
.hidden {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0a0a0af5;
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid #1a1a1a;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  height: 44px;
  filter: invert(1);
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: 40px;
  justify-content: center;
}

nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  transition: color 0.2s;
  font-weight: 500;
}

nav a:hover {
  color: #ffffff;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-icon {
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.cart-icon:hover {
  color: #ffffff;
}

/* ===== MENU HAMBURGUER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}

.menu-toggle.aberto span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.aberto span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.aberto span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== HERO ===== */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background-image:
        linear-gradient(90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.55) 35%,
            rgba(0,0,0,.15) 65%,
            rgba(0,0,0,.35) 100%),
        url("/assets/banner-vibration.jpg");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;
}

.hero-content{
    position:relative;
    z-index:5;
    width:480px;

    margin-left:4%;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.hero-content h1{
    font-size:64px;
    line-height:1.05;
    letter-spacing:5px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 48px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #444;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 10px;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
  transform: none;
}

/* ===== COLEÇÃO ===== */
.colecao {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
}

.colecao h2 {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 64px;
  text-align: center;
  color: #666;
  font-weight: 400;
}

.colecao h2::after {
  display: none;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ===== CARD DE PRODUTO ===== */
.produto-card {
  background-color: #0a0a0a;
  border: none;
  transition: opacity 0.3s;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.produto-card:hover {
  opacity: 0.85;
}

.produto-card-imagem {
  position: relative;
  overflow: hidden;
}

.produto-card-imagem img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.produto-card:hover .produto-card-imagem img {
  transform: scale(1.03);
}

.produto-info {
  padding: 16px 0;
}

.produto-info h3 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
  color: #ccc;
}

.produto-info .preco {
  color: #c9a84c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.produto-info .btn-comprar {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: 1px solid #333;
  color: #888;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 10px;
}

.produto-info .btn-comprar:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
}

/* ===== BOTÃO FAVORITAR ===== */
.btn-favoritar {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(10, 10, 10, 0.7);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.btn-favoritar:hover {
  background-color: rgba(10, 10, 10, 0.9);
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid #1a1a1a;
  color: #444;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== CARRINHO LATERAL ===== */
.carrinho-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.carrinho-lateral {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background-color: #0f0f0f;
  border-left: 1px solid #1a1a1a;
  z-index: 2002;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.carrinho-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid #1a1a1a;
}

.carrinho-header h3 {
  font-size: 11px;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
  font-weight: 400;
}

.carrinho-fechar {
  cursor: pointer;
  font-size: 18px;
  color: #555;
  transition: color 0.2s;
}

.carrinho-fechar:hover {
  color: #fff;
}

.carrinho-itens {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.carrinho-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: start;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 24px;
}

.carrinho-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 0;
}

.carrinho-item-info h4 {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
  color: #ccc;
}

.carrinho-item-info p {
  font-size: 11px;
  color: #555;
  margin-bottom: 4px;
}

.carrinho-qtd {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
}

.carrinho-qtd button {
  width: 36px;
  height: 32px;
  border: none;
  background: #141414;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.carrinho-qtd span {
  min-width: 32px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.carrinho-qtd button:active {
  background: #1f1f1f;
}

.nav-extra-mobile {
  display: none;
}

.header-icon-busca {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-icon-busca.ativo {
  color: #c9a84c;
}

.btn-remover {
  background: none;
  border: none;
  color: #444;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-remover:hover {
  color: #fff;
}

.carrinho-vazio {
  text-align: center;
  color: #444;
  font-size: 11px;
  letter-spacing: 3px;
  margin-top: 60px;
  text-transform: uppercase;
}

.carrinho-footer {
  padding: 24px 32px;
  border-top: 1px solid #1a1a1a;
}

.carrinho-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.carrinho-total span:last-child {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

/* ===== CORES NO CARD ===== */
.cores-card {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.cor-bolinha-card {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #333;
  display: inline-block;
}

/* ===== BUSCA NO HEADER ===== */
.busca-header-wrapper {
  position: relative;
  flex: 1;
  max-width: 320px;
  margin: 0 32px;
  display: flex;
  align-items: center;
}

.busca-header-wrapper .busca-icone {
  position: absolute;
  left: 12px;
  font-size: 12px;
  opacity: 0.4;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.busca-header-wrapper #busca-input {
  width: 100%;
  padding: 8px 36px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #2a2a2a;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s;
}

.busca-header-wrapper #busca-input::placeholder {
  color: #444;
  letter-spacing: 2px;
  font-size: 11px;
}

.busca-header-wrapper #busca-input:focus {
  border-color: #c9a84c;
}

.busca-header-wrapper #busca-input::-webkit-search-cancel-button,
.busca-header-wrapper #busca-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.busca-header-wrapper .busca-limpar {
  position: absolute;
  right: 0;
  cursor: pointer;
  color: #444;
  font-size: 12px;
  transition: color 0.2s;
}

.busca-header-wrapper .busca-limpar:hover {
  color: #fff;
}

/* ===== DROPDOWN DE RESULTADOS ===== */
.busca-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1500;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.busca-dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #141414;
}

.busca-dropdown-item:last-child {
  border-bottom: none;
}

.busca-dropdown-item:hover {
  background-color: #141414;
}

.busca-dropdown-item img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

.busca-dropdown-info {
  flex: 1;
  min-width: 0;
}

.busca-dropdown-info h4 {
  font-size: 11px;
  letter-spacing: 1px;
  color: #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

.busca-dropdown-info p {
  font-size: 12px;
  color: #c9a84c;
  font-weight: 500;
}

.busca-dropdown-vazio {
  padding: 32px 20px;
  text-align: center;
  color: #444;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.busca-dropdown-vertodos {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 10px;
  letter-spacing: 3px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  border-top: 1px solid #1a1a1a;
  text-transform: uppercase;
}

.busca-dropdown-vertodos:hover {
  background-color: #141414;
  color: #fff;
}

/* ===== ÍCONES DO HEADER ===== */
.header-icon {
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-icon:hover {
  color: #ffffff;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #c9a84c;
  color: #0a0a0a;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

/* ===== LINK HEADER ICON ===== */
a.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: color 0.2s;
  text-decoration: none;
}

a.header-icon:hover {
  color: #ffffff;
}

/* ===== PRODUTOS GRID VAZIO ===== */
.produtos-grid-vazio {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 32px;
  color: #555;
}

.produtos-grid-vazio-icone {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.produtos-grid-vazio p {
  font-size: 14px;
  letter-spacing: 2px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
    height: 56px;
  }

  nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    z-index: 999;
  }

  nav.aberta {
    display: flex;
  }

  nav a {
    font-size: 14px;
  }

  .nav-extra-mobile {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .busca-header-wrapper {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    max-width: none;
    margin: 0;
    padding: 12px 16px 16px;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    z-index: 1001;
  }

  .busca-header-wrapper.aberta {
    display: flex;
  }

  .header-icon-busca {
    display: flex;
  }

  .hero-content h1 {
    font-size: clamp(28px, 10vw, 40px);
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .btn-primary {
    padding: 12px 32px;
    font-size: 10px;
  }

  .colecao {
    padding: 80px 20px;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .carrinho-lateral {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .produto-info {
    padding: 12px 0;
  }

  .produto-info h3 {
    font-size: 10px;
  }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
linear-gradient(
90deg,
rgba(0,0,0,.45) 0%,
rgba(0,0,0,.18) 40%,
rgba(0,0,0,.08) 100%
);
}

.hero-gradient{
    position:absolute;
    transform: translateY(40px);
    inset:0;
    background:radial-gradient(circle at 80% 40%,rgba(201,168,76,.15),transparent 45%);
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:650px;
}

.hero-subtitle{
    display:inline-block;
    margin-bottom:18px;
    color:#c9a84c;
    letter-spacing:5px;
    font-size:12px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:92px;
    font-weight:200;
    line-height:1;
    letter-spacing:14px;
    margin-bottom:28px;
}

.hero-content p{
    font-size:15px;
    color:#d6d6d6;
    letter-spacing:3px;
    margin-bottom:40px;
}

.btn-primary{
    border:1px solid #c9a84c;
    color:#fff;
    transition:.35s;
}

.btn-primary:hover{
    background:#c9a84c;
    color:#000;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(201,168,76,.35);
}

header{
    background:rgba(5,5,5,.45);
    backdrop-filter:blur(18px);
}

/* ===== FOOTER PREMIUM ORGANIZADO ===== */

.footer-premium {
  padding: 78px 40px 64px;
  border-top: 1px solid #1a1a1a;
  background: #050505;
}

.footer-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 28px;
  filter: invert(1);
}

.footer-brand p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-col,
.footer-contact {
  text-align: center;
}

.footer-col h3,
.footer-contact h3 {
  margin: 0 0 24px;
  color: #c9a84c;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-col a,
.footer-contact a {
  display: block;
  margin-bottom: 15px;
  color: #777;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: 0.25s;
}

.footer-contact a[href^="mailto"] {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: lowercase;
}

.footer-col a:hover,
.footer-contact a:hover {
  color: #c9a84c;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  padding-top: 0;
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.footer-copy span {
  display: block;
  width: 240px;
  height: 1px;
  background: #1a1a1a;
  margin: 0 auto 28px;
}

.footer-copy p {
  margin: 0;
  color: #555;
  font-size: 12px;
  letter-spacing: 4px;
  line-height: 1.6;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-premium {
    padding: 60px 22px 46px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand,
  .footer-col,
  .footer-contact,
  .footer-copy {
    text-align: center;
  }

  .footer-right {
    gap: 38px;
  }

  .footer-copy span {
    width: 180px;
  }
}

/* ===== AVALIAÇÃO NO CARD DO PRODUTO ===== */

.produto-card-avaliacao {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 7px 0 8px;
  min-height: 18px;
}

.produto-card-estrelas {
  color: #c9a84c;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.produto-card-estrelas.sem-avaliacao {
  color: #333;
}

.produto-card-avaliacao small {
  color: #777;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1;
}

@media (max-width: 480px) {
  .produto-card-avaliacao {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .produto-card-avaliacao small {
    font-size: 10px;
  }
}

/* ===== CARD DE PRODUTO ESTILO PREMIUM ===== */

.produtos-grid {
  gap: 28px;
}

.produto-card {
  background: #101010;
  border: 1px solid #1f1f1f;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.produto-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.32);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.produto-card-imagem {
  background: #080808;
}

.produto-card-imagem img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 0;
}

.produto-info-premium {
  padding: 26px 22px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.08), transparent 45%),
    #101010;
}

.produto-economia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 15px;
  border: 1px solid #c9a84c;
  border-radius: 999px;
  color: #c9a84c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.produto-info-premium h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
}

.produto-precos-card {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.produto-precos-card strong {
  color: #c9a84c;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.produto-precos-card span {
  color: #777;
  font-size: 16px;
  text-decoration: line-through;
}

.produto-parcelamento {
  margin: 0 0 14px;
  color: #888;
  font-size: 13px;
  font-weight: 700;
}

.produto-card-avaliacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 12px 0 14px;
  min-height: 22px;
}

.produto-card-estrelas {
  color: #c9a84c;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.produto-card-estrelas.sem-avaliacao {
  color: #333;
}

.produto-card-avaliacao small {
  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 1;
}

.cores-card-premium {
  justify-content: center;
  margin: 14px 0 16px;
}

.produto-info-premium .btn-comprar {
  margin-top: 8px;
  padding: 14px;
  border-radius: 14px;
  border-color: rgba(201, 168, 76, 0.35);
  color: #c9a84c;
  font-weight: 900;
}

.produto-info-premium .btn-comprar:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #080808;
}

@media (max-width: 768px) {
  .produtos-grid {
    gap: 18px;
  }

  .produto-card {
    border-radius: 22px;
  }

  .produto-info-premium {
    padding: 22px 16px 20px;
  }

  .produto-info-premium h3 {
    font-size: 15px;
  }

  .produto-precos-card strong {
    font-size: 19px;
  }

  .produto-card-estrelas {
    font-size: 15px;
  }

  .produto-card-avaliacao small {
    font-size: 12px;
  }
}

/* ===== AJUSTES GERAIS MOBILE VIBRATION ===== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
}

/* ===== HEADER MOBILE ===== */

@media (max-width: 768px) {
  header {
    width: 100%;
    max-width: 100vw;
    overflow: visible;
  }

  .header-inner {
    width: 100%;
    max-width: 100vw;
    height: 56px;
    padding: 0 18px;
  }

  .logo {
  width: 62px !important;
  max-width: 62px !important;
  height: auto;
}

  .header-icons {
    gap: 12px;
  }

  .header-icon {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    width: 28px;
  }
}

/* ===== HERO MOBILE ===== */

@media (max-width: 768px) {
  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: calc(100svh - 78px);
    padding: 0 22px;
    overflow: hidden;
    background-size: 100% auto !important;
    background-repeat: no-repeat;
    background-position: top center !important;
}
  }

  .hero-content,
  .hero-text,
  .hero-info {
    width: 100%;
    max-width: 100%;
  }

  .hero h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(28px, 11vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: 2px !important;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero p,
  .hero-subtitle {
    max-width: 92%;
    font-size: 17px !important;
    line-height: 1.7 !important;
    letter-spacing: 5px !important;
  }

  .hero .btn,
  .hero button,
  .hero a.btn,
  .btn-hero {
    min-height: 54px;
    padding: 15px 28px;
    border-radius: 16px;
    font-size: 11px;
    letter-spacing: 4px;
  }

@media (max-width: 420px) {
  .hero h1,
  .hero-title {
    font-size: clamp(42px, 15vw, 68px) !important;
    letter-spacing: 8px !important;
  }

  .hero p,
  .hero-subtitle {
    font-size: 15px !important;
    letter-spacing: 4px !important;
  }
}

/* ===== SEÇÕES MOBILE ===== */

@media (max-width: 768px) {
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container,
  .section-container,
  .colecao-container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-title,
  .colecao-titulo {
    text-align: center;
    margin-bottom: 34px;
  }

  .section-title small,
  .colecao-titulo small {
    letter-spacing: 6px;
  }
}

/* ===== CARDS DE PRODUTO MOBILE ===== */

@media (max-width: 768px) {
  .produtos-grid,
  .products-grid,
  #produtos-container,
  #lista-produtos {
    width: 100%;
    max-width: 100%;
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 28px;
  }

  .produto-card {
    width: min(86vw, 340px) !important;
    max-width: 340px !important;
    margin: 0 auto;
    border-radius: 28px !important;
    overflow: hidden;
  }

  .produto-card-imagem {
    width: 100%;
    overflow: hidden;
  }

  .produto-card-imagem img,
  .produto-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }

  .produto-info,
  .produto-info-premium {
    padding: 24px 18px 26px !important;
    text-align: center;
  }

  .produto-info h3,
  .produto-info-premium h3 {
    font-size: 20px !important;
    line-height: 1.25;
  }

  .produto-precos-card strong {
    font-size: 25px !important;
  }

  .produto-parcelamento {
    max-width: 240px;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 14px !important;
    line-height: 1.45;
  }

  .produto-card-avaliacao {
    justify-content: center;
  }

  .cores-card,
  .cores-card-premium {
    justify-content: center;
  }

  .btn-comprar,
  .produto-card .btn-comprar {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    font-size: 11px;
    letter-spacing: 4px;
  }
}

/* ===== CARDS INFORMATIVOS MOBILE ===== */

@media (max-width: 768px) {
  .beneficios-grid,
  .cards-info,
  .como-comprar-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .beneficio-card,
  .info-card,
  .card-info {
    width: 100%;
    max-width: 100%;
  }
}

/* ===== BANNER MOBILE EXCLUSIVO ===== */

@media (max-width: 768px) {
  .logo {
    width: 58px !important;
    max-width: 58px !important;
    height: auto !important;
  }

  .header-inner {
    min-height: 72px !important;
    padding: 10px 18px !important;
  }

  .header-icons {
    gap: 10px !important;
  }

  .header-icon {
    width: 21px !important;
    height: 21px !important;
  }

  .menu-toggle {
    width: 26px !important;
  }

  .hero {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: calc(100svh - 72px) !important;
    height: auto !important;

    padding: 0 22px 42px !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;

    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.10) 45%,
        rgba(0, 0, 0, 0.88) 100%
      ),
      url("/assets/banner-vibration-mobile.jpg") !important;

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;

    overflow: hidden !important;
  }

  .hero::before,
  .hero::after {
    display: none !important;
  }

  .hero-content,
  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-tag,
  .hero h1,
  .hero-title,
  .hero-subtitle,
  .hero p {
    display: none !important;
  }

  .hero .btn,
  .hero a,
  .btn-hero {
    width: min(78vw, 260px) !important;
    min-height: 50px !important;
    padding: 14px 26px !important;
    border-radius: 15px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;

    background: linear-gradient(135deg, #f0d37a, #c9a84c) !important;
    color: #080808 !important;
    border: 1px solid #c9a84c !important;
  }
}

@media (max-width: 420px) {
  .logo {
    width: 54px !important;
    max-width: 54px !important;
  }

  .hero {
    min-height: calc(100svh - 70px) !important;
    padding-bottom: 36px !important;
    background-position: center top !important;
  }

  .hero .btn,
  .hero a,
  .btn-hero {
    width: min(76vw, 245px) !important;
    min-height: 48px !important;
    font-size: 10px !important;
    letter-spacing: 3.5px !important;
  }
}

/* ===== CARDS DE CONFIANÇA MOBILE MENORES ===== */

@media (max-width: 768px) {
  .beneficios-grid,
  .cards-info,
  .como-comprar-grid,
  .trust-grid,
  .hero-cards,
  .home-benefits,
  .vantagens-grid {
    width: 100% !important;
    max-width: 100vw !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 0 10px !important;
    overflow: visible !important;
  }

  .beneficio-card,
  .info-card,
  .card-info,
  .trust-card,
  .hero-card-info,
  .home-benefit-card,
  .vantagem-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 150px !important;
    padding: 14px 10px !important;
    border-radius: 18px !important;
  }

  .beneficio-card span,
  .info-card span,
  .card-info span,
  .trust-card span,
  .hero-card-info span,
  .home-benefit-card span,
  .vantagem-card span {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .beneficio-card h3,
  .beneficio-card strong,
  .info-card h3,
  .info-card strong,
  .card-info h3,
  .card-info strong,
  .trust-card h3,
  .trust-card strong,
  .hero-card-info h3,
  .hero-card-info strong,
  .home-benefit-card h3,
  .home-benefit-card strong,
  .vantagem-card h3,
  .vantagem-card strong {
    font-size: 10px !important;
    line-height: 1.35 !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
  }

  .beneficio-card p,
  .info-card p,
  .card-info p,
  .trust-card p,
  .hero-card-info p,
  .home-benefit-card p,
  .vantagem-card p {
    font-size: 11px !important;
    line-height: 1.45 !important;
    color: #8d8d8d !important;
  }
}

@media (max-width: 390px) {
  .beneficios-grid,
  .cards-info,
  .como-comprar-grid,
  .trust-grid,
  .hero-cards,
  .home-benefits,
  .vantagens-grid {
    gap: 6px !important;
    padding: 0 8px !important;
  }

  .beneficio-card,
  .info-card,
  .card-info,
  .trust-card,
  .hero-card-info,
  .home-benefit-card,
  .vantagem-card {
    min-height: 140px !important;
    padding: 12px 8px !important;
    border-radius: 16px !important;
  }

  .beneficio-card span,
  .info-card span,
  .card-info span,
  .trust-card span,
  .hero-card-info span,
  .home-benefit-card span,
  .vantagem-card span {
    font-size: 20px !important;
  }

  .beneficio-card h3,
  .beneficio-card strong,
  .info-card h3,
  .info-card strong,
  .card-info h3,
  .card-info strong,
  .trust-card h3,
  .trust-card strong,
  .hero-card-info h3,
  .hero-card-info strong,
  .home-benefit-card h3,
  .home-benefit-card strong,
  .vantagem-card h3,
  .vantagem-card strong {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }

  .beneficio-card p,
  .info-card p,
  .card-info p,
  .trust-card p,
  .hero-card-info p,
  .home-benefit-card p,
  .vantagem-card p {
    font-size: 10px !important;
  }
}

/* ===== CARDS DE CONFIANÇA EM CARROSSEL MOBILE ===== */

@media (max-width: 768px) {
  .beneficios-grid,
  .cards-info,
  .como-comprar-grid,
  .trust-grid,
  .hero-cards,
  .home-benefits,
  .vantagens-grid {
    width: 100% !important;
    max-width: 100vw !important;

    display: flex !important;
    grid-template-columns: unset !important;

    gap: 14px !important;
    padding: 0 18px 10px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;

    -webkit-overflow-scrolling: touch;
  }

  .beneficios-grid::-webkit-scrollbar,
  .cards-info::-webkit-scrollbar,
  .como-comprar-grid::-webkit-scrollbar,
  .trust-grid::-webkit-scrollbar,
  .hero-cards::-webkit-scrollbar,
  .home-benefits::-webkit-scrollbar,
  .vantagens-grid::-webkit-scrollbar {
    display: none;
  }

  .beneficios-grid,
  .cards-info,
  .como-comprar-grid,
  .trust-grid,
  .hero-cards,
  .home-benefits,
  .vantagens-grid {
    scrollbar-width: none;
  }

  .beneficio-card,
  .info-card,
  .card-info,
  .trust-card,
  .hero-card-info,
  .home-benefit-card,
  .vantagem-card {
    flex: 0 0 68vw !important;
    width: 68vw !important;
    min-width: 68vw !important;
    max-width: 240px !important;

    min-height: 190px !important;
    padding: 24px 22px !important;
    border-radius: 24px !important;

    scroll-snap-align: start;
  }

  .beneficio-card span,
  .info-card span,
  .card-info span,
  .trust-card span,
  .hero-card-info span,
  .home-benefit-card span,
  .vantagem-card span {
    font-size: 28px !important;
    margin-bottom: 14px !important;
  }

  .beneficio-card h3,
  .beneficio-card strong,
  .info-card h3,
  .info-card strong,
  .card-info h3,
  .card-info strong,
  .trust-card h3,
  .trust-card strong,
  .hero-card-info h3,
  .hero-card-info strong,
  .home-benefit-card h3,
  .home-benefit-card strong,
  .vantagem-card h3,
  .vantagem-card strong {
    font-size: 13px !important;
    line-height: 1.35 !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 12px !important;
  }

  .beneficio-card p,
  .info-card p,
  .card-info p,
  .trust-card p,
  .hero-card-info p,
  .home-benefit-card p,
  .vantagem-card p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #8f8f8f !important;
  }
}

@media (max-width: 420px) {
  .beneficio-card,
  .info-card,
  .card-info,
  .trust-card,
  .hero-card-info,
  .home-benefit-card,
  .vantagem-card {
    flex-basis: 66vw !important;
    width: 66vw !important;
    min-width: 66vw !important;
    max-width: 230px !important;
    min-height: 180px !important;
    padding: 22px 20px !important;
  }
}

/* ===== GARANTIR CARROSSEL HORIZONTAL MOBILE ===== */

@media (max-width: 768px) {
  .beneficios-grid,
  .cards-info,
  .como-comprar-grid,
  .trust-grid,
  .hero-cards,
  .home-benefits,
  .vantagens-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .beneficios-grid > *,
  .cards-info > *,
  .como-comprar-grid > *,
  .trust-grid > *,
  .hero-cards > *,
  .home-benefits > *,
  .vantagens-grid > * {
    flex: 0 0 68vw !important;
    min-width: 68vw !important;
    max-width: 245px !important;
    scroll-snap-align: start;
  }
}

/* ===== CARROSSEL AUTOMÁTICO DA FAIXA DE CONFIANÇA MOBILE ===== */

@media (max-width: 768px) {
  .home-faixa.carrossel-confianca-mobile {
    width: 100% !important;
    max-width: 100vw !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 14px !important;
    padding: 28px 18px 34px !important;
    margin: 0 !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-faixa.carrossel-confianca-mobile::-webkit-scrollbar {
    display: none;
  }

  .home-faixa.carrossel-confianca-mobile .home-faixa-card {
    flex: 0 0 68vw !important;
    width: 68vw !important;
    min-width: 68vw !important;
    max-width: 250px !important;

    min-height: 185px !important;
    padding: 24px 22px !important;
    border-radius: 24px !important;

    scroll-snap-align: start;
  }

  .home-faixa-card span {
    display: block;
    font-size: 28px !important;
    margin-bottom: 14px !important;
  }

  .home-faixa-card strong {
    display: block;
    font-size: 13px !important;
    line-height: 1.35 !important;
    letter-spacing: 3px !important;
    margin-bottom: 12px !important;
  }

  .home-faixa-card p {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 420px) {
  .home-faixa.carrossel-confianca-mobile .home-faixa-card {
    flex-basis: 66vw !important;
    width: 66vw !important;
    min-width: 66vw !important;
    max-width: 235px !important;
    min-height: 178px !important;
    padding: 22px 20px !important;
  }
}

/* ===== VITRINE DE PRODUTOS MOBILE PREMIUM ===== */

@media (max-width: 768px) {
  #colecao {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    overflow: hidden !important;
  }

  #colecao .section-title,
  #colecao .colecao-titulo,
  .colecao-titulo {
    text-align: center !important;
    margin-bottom: 34px !important;
  }

  #colecao .section-title small,
  #colecao .colecao-titulo small,
  .colecao-titulo small {
    display: block !important;
    color: #c9a84c !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 7px !important;
    text-transform: uppercase !important;
  }

  .produtos-grid,
  .products-grid,
  #produtos-container,
  #lista-produtos {
    width: 100% !important;
    max-width: 100vw !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;

    padding: 0 22px 18px !important;
    margin: 0 !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 22px;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .produtos-grid::-webkit-scrollbar,
  .products-grid::-webkit-scrollbar,
  #produtos-container::-webkit-scrollbar,
  #lista-produtos::-webkit-scrollbar {
    display: none;
  }

  .produto-card {
    flex: 0 0 78vw !important;
    width: 78vw !important;
    min-width: 78vw !important;
    max-width: 330px !important;

    margin: 0 !important;
    border-radius: 30px !important;
    overflow: hidden !important;

    background:
      radial-gradient(circle at top, rgba(201, 168, 76, 0.08), transparent 42%),
      #101010 !important;

    border: 1px solid rgba(201, 168, 76, 0.16) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45) !important;

    scroll-snap-align: start;
  }

  .produto-card-imagem {
    width: 100% !important;
    height: auto !important;
    background: #080808 !important;
    overflow: hidden !important;
  }

  .produto-card-imagem img,
  .produto-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block !important;
  }

  .produto-info,
  .produto-info-premium {
    padding: 24px 20px 26px !important;
    text-align: center !important;
  }

  .produto-info h3,
  .produto-info-premium h3 {
    margin: 0 0 14px !important;
    color: #f5f5f5 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
  }

  .produto-precos-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .produto-precos-card strong {
    color: #c9a84c !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .produto-precos-card span {
    color: #777 !important;
    font-size: 17px !important;
    text-decoration: line-through !important;
  }

  .produto-parcelamento {
    max-width: 250px !important;
    margin: 0 auto 18px !important;
    color: #8f8f8f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
  }

  .produto-card-avaliacao {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    margin-bottom: 18px !important;
  }

  .produto-card-estrelas {
    color: #c9a84c !important;
    font-size: 20px !important;
    letter-spacing: 2px !important;
  }

  .produto-card-avaliacao small {
    color: #9a9a9a !important;
    font-size: 13px !important;
  }

  .cores-card,
  .cores-card-premium {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 0 22px !important;
  }

  .cor-bolinha,
  .cores-card span,
  .cores-card-premium span {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
  }

  .btn-comprar,
  .produto-card .btn-comprar {
    width: 100% !important;
    min-height: 54px !important;
    border-radius: 18px !important;

    background: transparent !important;
    border: 1px solid rgba(201, 168, 76, 0.55) !important;
    color: #c9a84c !important;

    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;

    box-shadow: none !important;
  }

  .btn-comprar:hover,
  .produto-card .btn-comprar:hover {
    background: #c9a84c !important;
    color: #080808 !important;
  }
}

@media (max-width: 420px) {
  .produto-card {
    flex-basis: 80vw !important;
    width: 80vw !important;
    min-width: 80vw !important;
    max-width: 315px !important;
  }

  .produto-info h3,
  .produto-info-premium h3 {
    font-size: 21px !important;
  }

  .produto-precos-card strong {
    font-size: 27px !important;
  }
}

/* ===== VITRINE MOBILE EM CARROSSEL COM SETAS ===== */

@media (max-width: 768px) {
  .produtos-carousel-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .produtos-carousel,
  #produtos-container.produtos-carousel {
    width: 100% !important;
    max-width: 100vw !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch !important;

    gap: 16px !important;
    padding: 0 76px 22px 18px !important;
    margin: 0 !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .produtos-carousel::-webkit-scrollbar,
  #produtos-container.produtos-carousel::-webkit-scrollbar {
    display: none;
  }

  .produtos-carousel .produto-card,
  #produtos-container.produtos-carousel .produto-card {
    flex: 0 0 72vw !important;
    width: 72vw !important;
    min-width: 72vw !important;
    max-width: 292px !important;

    margin: 0 !important;
    border-radius: 26px !important;
    overflow: hidden !important;

    scroll-snap-align: start;

    background:
      radial-gradient(circle at top, rgba(201, 168, 76, 0.08), transparent 42%),
      #101010 !important;

    border: 1px solid rgba(201, 168, 76, 0.16) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42) !important;
  }

  .produtos-carousel .produto-card-imagem img,
  #produtos-container.produtos-carousel .produto-card-imagem img,
  .produtos-carousel .produto-card img,
  #produtos-container.produtos-carousel .produto-card img {
    width: 100% !important;
    aspect-ratio: 1 / 0.82 !important;
    object-fit: cover !important;
    display: block !important;
  }

  .produtos-carousel .produto-info,
  .produtos-carousel .produto-info-premium,
  #produtos-container.produtos-carousel .produto-info,
  #produtos-container.produtos-carousel .produto-info-premium {
    padding: 20px 18px 22px !important;
    text-align: center !important;
  }

  .produtos-carousel .produto-info h3,
  .produtos-carousel .produto-info-premium h3,
  #produtos-container.produtos-carousel .produto-info h3,
  #produtos-container.produtos-carousel .produto-info-premium h3 {
    margin-bottom: 10px !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  .produtos-carousel .produto-precos-card strong,
  #produtos-container.produtos-carousel .produto-precos-card strong {
    font-size: 25px !important;
  }

  .produtos-carousel .produto-parcelamento,
  #produtos-container.produtos-carousel .produto-parcelamento {
    max-width: 220px !important;
    margin: 0 auto 14px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .produtos-carousel .produto-card-estrelas,
  #produtos-container.produtos-carousel .produto-card-estrelas {
    font-size: 18px !important;
  }

  .produtos-carousel .cores-card,
  .produtos-carousel .cores-card-premium,
  #produtos-container.produtos-carousel .cores-card,
  #produtos-container.produtos-carousel .cores-card-premium {
    margin-bottom: 18px !important;
  }

  .produtos-carousel .btn-comprar,
  #produtos-container.produtos-carousel .btn-comprar {
    min-height: 50px !important;
    border-radius: 17px !important;
    font-size: 10px !important;
    letter-spacing: 4px !important;
  }

  .produtos-seta {
    position: absolute !important;
    top: 50% !important;
    z-index: 5 !important;

    width: 42px !important;
    height: 42px !important;

    display: grid !important;
    place-items: center !important;

    border: 1px solid rgba(201, 168, 76, 0.35) !important;
    border-radius: 50% !important;

    background: rgba(8, 8, 8, 0.82) !important;
    color: #c9a84c !important;

    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 300 !important;

    cursor: pointer !important;
    transform: translateY(-50%) !important;
    backdrop-filter: blur(10px);
  }

  .produtos-seta-direita {
    right: 16px !important;
  }

  .produtos-seta-esquerda {
    left: 16px !important;
  }

  .produtos-seta:active {
    transform: translateY(-50%) scale(0.94) !important;
  }
}

@media (max-width: 420px) {
  .produtos-carousel .produto-card,
  #produtos-container.produtos-carousel .produto-card {
    flex-basis: 70vw !important;
    width: 70vw !important;
    min-width: 70vw !important;
    max-width: 282px !important;
  }

  .produtos-carousel,
  #produtos-container.produtos-carousel {
    padding-right: 70px !important;
  }

  .produtos-seta {
    width: 39px !important;
    height: 39px !important;
    font-size: 28px !important;
  }
}

/* ===== COMO COMPRAR MOBILE EM CARROSSEL ===== */

@media (max-width: 768px) {
  #como-comprar {
    width: 100% !important;
    max-width: 100vw !important;
    margin-top: 76px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  #como-comprar .home-section-topo {
    max-width: 100% !important;
    padding: 0 24px !important;
    margin-bottom: 32px !important;
  }

  #como-comprar .home-tag {
    font-size: 11px !important;
    letter-spacing: 5px !important;
  }

  #como-comprar h2 {
    font-size: 36px !important;
    line-height: 1.12 !important;
    color: #c9a84c !important;
  }

  #como-comprar .home-section-topo p {
    max-width: 330px !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  #como-comprar .como-grid {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;

    display: flex !important;
    grid-template-columns: unset !important;
    flex-wrap: nowrap !important;

    gap: 16px !important;
    padding: 0 72px 20px 24px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #como-comprar .como-grid::-webkit-scrollbar {
    display: none;
  }

  #como-comprar .como-card {
    flex: 0 0 72vw !important;
    width: 72vw !important;
    min-width: 72vw !important;
    max-width: 300px !important;

    min-height: 250px !important;
    padding: 26px 24px !important;
    border-radius: 26px !important;

    scroll-snap-align: start;

    background:
      radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 42%),
      #0b0b0b !important;
  }

  #como-comprar .como-numero {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 26px !important;
    font-size: 13px !important;
  }

  #como-comprar .como-card h3 {
    max-width: 210px !important;
    margin-bottom: 14px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    letter-spacing: 3px !important;
    word-break: normal !important;
  }

  #como-comprar .como-card p {
    max-width: 220px !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #8f8f8f !important;
    word-break: normal !important;
  }
}

@media (max-width: 420px) {
  #como-comprar .como-grid {
    padding-right: 66px !important;
  }

  #como-comprar .como-card {
    flex-basis: 70vw !important;
    width: 70vw !important;
    min-width: 70vw !important;
    max-width: 286px !important;
    min-height: 245px !important;
  }

  #como-comprar h2 {
    font-size: 34px !important;
  }

  #como-comprar .como-card h3 {
    font-size: 17px !important;
  }

  #como-comprar .como-card p {
    font-size: 14px !important;
  }
}

/* ===== COMO COMPRAR MOBILE EM 4 QUADRADOS ===== */

@media (max-width: 768px) {
  #como-comprar {
    width: 100% !important;
    max-width: 100vw !important;
    margin-top: 70px !important;
    padding: 0 18px !important;
    overflow: hidden !important;
  }

  #como-comprar .home-section-topo {
    padding: 0 !important;
    margin-bottom: 26px !important;
  }

  #como-comprar .home-tag {
    font-size: 10px !important;
    letter-spacing: 4px !important;
  }

  #como-comprar h2 {
    font-size: 34px !important;
    line-height: 1.1 !important;
    color: #c9a84c !important;
  }

  #como-comprar .home-section-topo p {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  #como-comprar .como-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;

    overflow: visible !important;
  }

  #como-comprar .como-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    aspect-ratio: 1 / 1 !important;
    min-height: auto !important;

    padding: 16px 13px !important;
    border-radius: 22px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;

    background:
      radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 42%),
      #0b0b0b !important;
  }

  #como-comprar .como-numero {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 16px !important;
    font-size: 12px !important;
  }

  #como-comprar .como-card h3 {
    margin: 0 0 9px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    letter-spacing: 2.2px !important;
    word-break: normal !important;
  }

  #como-comprar .como-card p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: #8f8f8f !important;
    word-break: normal !important;
  }
}

@media (max-width: 390px) {
  #como-comprar {
    padding: 0 14px !important;
  }

  #como-comprar .como-grid {
    gap: 10px !important;
  }

  #como-comprar .como-card {
    padding: 14px 11px !important;
    border-radius: 20px !important;
  }

  #como-comprar .como-numero {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 12px !important;
    font-size: 11px !important;
  }

  #como-comprar .como-card h3 {
    font-size: 12px !important;
    letter-spacing: 1.8px !important;
  }

  #como-comprar .como-card p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
}

/* ===== ENTREGA E RASTREAMENTO MOBILE AJUSTADO ===== */

@media (max-width: 768px) {
  #entrega {
    width: 100% !important;
    max-width: 100vw !important;
    margin-top: 72px !important;
    padding: 0 18px !important;
    overflow: hidden !important;
  }

  #entrega .home-section-topo {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
    padding: 0 !important;
  }

  #entrega .home-tag {
    font-size: 10px !important;
    letter-spacing: 4px !important;
  }

  #entrega h2 {
    max-width: 100% !important;
    font-size: 34px !important;
    line-height: 1.12 !important;
    color: #c9a84c !important;
  }

  #entrega .home-section-topo p {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #8d8d8d !important;
  }

  #entrega .info-grid {
    width: 100% !important;
    max-width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;

    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #entrega .info-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    padding: 24px 20px !important;
    border-radius: 24px !important;
  }

  #entrega .info-card h3 {
    margin-bottom: 14px !important;
    font-size: 14px !important;
    letter-spacing: 3px !important;
    line-height: 1.35 !important;
  }

  #entrega .info-card p {
    margin-bottom: 18px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  #entrega .btn-outline-home {
    width: 100% !important;
    min-height: 50px !important;
    padding: 13px 16px !important;
    border-radius: 16px !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
  }

  #entrega .info-lista {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #entrega .info-lista li {
    width: 100% !important;
    padding: 14px 15px !important;
    border-radius: 16px !important;

    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  #entrega .info-lista strong {
    display: block !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 390px) {
  #entrega {
    padding: 0 14px !important;
  }

  #entrega h2 {
    font-size: 31px !important;
  }

  #entrega .info-card {
    padding: 22px 17px !important;
    border-radius: 22px !important;
  }

  #entrega .info-lista li {
    padding: 13px 14px !important;
  }
}

/* ===== ATENDIMENTO E TROCAS MOBILE AJUSTADO ===== */

@media (max-width: 768px) {
  #atendimento {
    width: 100% !important;
    max-width: 100vw !important;
    margin-top: 72px !important;
    padding: 0 18px !important;
    overflow: hidden !important;
  }

  #atendimento .home-section-topo {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
    padding: 0 !important;
  }

  #atendimento .home-tag {
    font-size: 10px !important;
    letter-spacing: 4px !important;
  }

  #atendimento h2 {
    max-width: 100% !important;
    font-size: 34px !important;
    line-height: 1.12 !important;
    color: #c9a84c !important;
  }

  #atendimento .home-section-topo p {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #8d8d8d !important;
  }

  #atendimento .info-grid {
    width: 100% !important;
    max-width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;

    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #atendimento .info-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    padding: 24px 20px !important;
    border-radius: 24px !important;
  }

  #atendimento .info-card h3 {
    margin-bottom: 14px !important;
    font-size: 14px !important;
    letter-spacing: 3px !important;
    line-height: 1.35 !important;
  }

  #atendimento .info-card p {
    margin-bottom: 18px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #9a9a9a !important;
  }

  #atendimento .btn-outline-home {
    width: 100% !important;
    min-height: 50px !important;
    padding: 13px 16px !important;
    border-radius: 16px !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    text-align: center !important;
  }

  #atendimento .info-lista {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #atendimento .info-lista li {
    width: 100% !important;
    padding: 14px 15px !important;
    border-radius: 16px !important;

    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  #atendimento .info-lista strong {
    display: block !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 390px) {
  #atendimento {
    padding: 0 14px !important;
  }

  #atendimento h2 {
    font-size: 31px !important;
  }

  #atendimento .info-card {
    padding: 22px 17px !important;
    border-radius: 22px !important;
  }

  #atendimento .info-lista li {
    padding: 13px 14px !important;
  }
}