:root {
  --bg-main: #0c0620;
  --bg-secondary: #170b32;
  --bg-card: rgba(28, 10, 55, 0.78);
  --border-soft: rgba(255, 255, 255, 0.12);
  --text-primary: #f2eefc;
  --text-secondary: #b7b0cb;
  --accent-purple: #8800cc;
  --accent-purple-2: #23003f;
  --accent-orange: #ff8c2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 85% 8%, #3a1870 0%, transparent 40%),
              radial-gradient(circle at 20% 22%, #2a0e5c 0%, transparent 35%),
              radial-gradient(circle at 60% 65%, #1e0a42 0%, transparent 30%),
              var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.section-spacing {
  padding: 100px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(18, 12, 32, 0.45), rgba(8, 6, 14, 0.2));
}

.home-signature-section {
  padding-top: 132px !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 6, 30, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .navbar {
  position: relative;
  min-height: 70px;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.site-header .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  color: rgba(255,255,255,0.85);
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .site-header .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
  }

  /* Ajuste para o logo não ser absoluto e respeitar o flex no mobile se necessário, 
     ou mantê-lo absoluto mas garantir que o toggler tenha espaço */
  .brand-logo-link {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    order: 1;
  }

  .site-header .navbar-toggler {
    order: 2;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .site-header .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0.75rem;
    width: 160px;
    background: rgba(13, 10, 25, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    margin-top: 0.4rem;
  }

  .navbar-nav {
    text-align: left;
  }
}

.brand-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-logo-link {
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  z-index: 5;
  overflow: visible;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: 45vw;
  display: block;
}

/* Slogan oficial — barra sob o menu e rodapé */
.site-slogan-bar-wrap {
  text-align: center;
  background: linear-gradient(90deg, transparent, rgba(136, 0, 204, 0.28), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.32rem 1rem 0.4rem;
}

.site-slogan-bar {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(215, 206, 255, 0.88);
  margin: 0;
  padding: 0;
}

.site-slogan-bar strong {
  font-weight: 600;
  color: #f0eaff;
  letter-spacing: 0.04em;
}

.site-slogan-trust {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 193, 168, 0.95);
  margin: 0.22rem 0 0;
  padding: 0;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  border-radius: 0;
  padding: 0.42rem 0.72rem !important;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  background: transparent !important;
  outline: none;
  box-shadow: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-orange) !important;
  text-shadow: 0 8px 22px rgba(255, 140, 43, 0.45);
  background: transparent !important;
  outline: none;
  box-shadow: none;
}

.nav-link:active {
  color: var(--accent-orange) !important;
  text-shadow: 0 8px 22px rgba(255, 140, 43, 0.45);
  background: transparent !important;
}

.nav-link:focus-visible {
  color: var(--accent-orange) !important;
  text-shadow: 0 8px 22px rgba(255, 140, 43, 0.45);
  background: transparent !important;
  outline: none;
  box-shadow: none;
}

.nav-link.active {
  color: #ffffff !important;
  background: transparent !important;
}

.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 90px 0 40px;
}

.hero-canvas-wrap {
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(115deg, rgba(6, 4, 12, 0.88) 12%, rgba(12, 7, 24, 0.72) 44%, rgba(5, 3, 11, 0.84) 88%),
    linear-gradient(180deg, rgba(136, 0, 204, 0.14), rgba(5, 3, 11, 0.4)),
    url("https://images.unsplash.com/photo-1528819622765-d6bcf132f793?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.03);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(136, 0, 204, 0.35);
  background: rgba(136, 0, 204, 0.12);
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  color: #f0ccff;
  backdrop-filter: blur(6px);
}

.page-hero {
  padding: 130px 0 70px;
}

.page-hero h1 {
  margin: 0.6rem 0 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-hero p {
  margin-top: 1rem;
  color: var(--text-secondary);
  max-width: 58ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e0aaff;
}

.hero-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-left: auto;
  margin-right: auto;
  max-width: 14ch;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 56ch;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.btn-primary-custom {
  background: linear-gradient(135deg, #ff8c2b 0%, #bb44ee 55%, #8800cc 100%);
  border: none;
  color: #fff;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 140, 43, 0.35);
  color: #fff;
}

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--text-primary);
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline-custom:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 140, 43, 0.08);
  box-shadow: 0 10px 30px rgba(255, 140, 43, 0.28);
  color: #fff;
}

.glass-card {
  border: 1px solid var(--border-soft);
  background: linear-gradient(140deg, rgba(55, 22, 100, 0.55), rgba(28, 10, 55, 0.80));
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 40px rgba(5, 3, 11, 0.45);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.piece {
  position: absolute;
  border-radius: 50% 50% 10% 10%;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.5));
}

.piece-king {
  width: 170px;
  height: 270px;
  background: linear-gradient(180deg, #f2f2f5 0%, #adadbd 45%, #7a7893 100%);
  left: 18%;
  bottom: -18px;
}

.piece-queen {
  width: 140px;
  height: 220px;
  background: linear-gradient(180deg, #171322 0%, #100d1d 40%, #0b0814 100%);
  right: 20%;
  bottom: 5px;
  box-shadow: 0 0 28px rgba(255, 140, 43, 0.22);
}

.visual-caption {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  width: 100%;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: #d6d0ea;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header.text-center {
  align-items: center;
}

.section-header h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-family: Poppins, sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 94px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 140, 43, 0.95), rgba(136, 0, 204, 0.85));
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  color: #ffbe86;
}

.content-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.glass-card p {
  color: var(--text-secondary);
}

.brand-quote {
  border-left: 2px solid var(--accent-orange);
  padding-left: 1rem;
  color: #f8e8d7;
  font-size: 1.08rem;
  margin: 0;
}

.product-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(38, 12, 75, 0.88), rgba(18, 8, 38, 0.94));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 43, 0.4);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.product-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-1 {
  /* Mesma imagem da Home (collection-2) */
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1586165368502-1bad197a6461?auto=format&fit=crop&w=1200&q=80");
}

.product-2 {
  /* Mesma imagem da Home (collection-3) */
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/categorias/2d08d1de-afa3-4357-8285-c19ff04dcb20.png");
  filter: grayscale(100%);
}

.product-3 {
  /* Mesma imagem da Home (collection-4) */
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1764250244454-e063cef0f730?auto=format&fit=crop&w=1200&q=80");
  filter: grayscale(100%);
}

.product-4 {
  /* Mesma imagem da Home (collection-6) */
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1774366127010-9835ae1373a0?auto=format&fit=crop&w=1200&q=80");
  filter: grayscale(100%);
}

.product-5 {
  /* Mesma imagem da Home (collection-5) */
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1670234025697-84080c3fdb08?auto=format&fit=crop&w=1200&q=80");
  filter: grayscale(100%);
}

.mesa-personalizada-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/mesas/PHOTO-2026-05-11-08-43-52.jpg");
}

.product-body {
  padding: 1.4rem;
}

.product-body h3 {
  font-size: 1.2rem;
}

.card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.product-body p {
  color: var(--text-secondary);
  margin-top: 0.55rem;
}

.category-product-tag {
  display: block;
  text-align: center;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5ddc6;
  background: rgba(255, 140, 43, 0.16);
  border: 1px solid rgba(255, 140, 43, 0.28);
}

/* Coluna: `d-flex flex-column` na col + `flex-fill w-100` no article; ver relogios / tabuleiros / pecas */
.category-product-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.category-product-card > .category-product-image-link {
  flex-shrink: 0;
}

.category-product-card .product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.1rem;
}

/* mt-3 do Bootstrap usa !important — sem !important o auto nunca empurra os botões */
.category-product-card .product-body > .d-grid {
  margin-top: auto !important;
}

.category-product-card .product-body h3 {
  font-size: 1.12rem;
  margin: 0.15rem 0 0;
}

.category-product-card .product-body p {
  font-size: 0.95rem;
}

.category-product-image-link {
  display: block;
}

.category-product-title-link {
  color: var(--text-primary);
  text-decoration: none;
}

.category-product-title-link:hover {
  color: #f5ddc6;
}

.tabuleiro-mdf-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/tabuleiros/tabuleiro-standard/PHOTO-2026-05-14-13-07-43.jpg");
}

.tabuleiro-standard-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1528819622765-d6bcf132f793?auto=format&fit=crop&w=1200&q=80");
}

.tabuleiro-marchetado-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/tabuleiros/marchetado/WhatsApp-Image-2026-05-11-at-08.22.35.jpeg");
}

.tabuleiro-marchetado-pvc-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/tabuleiros/pvc/WhatsApp-Image-2026-05-11-at-08.24.57-(1).jpeg");
}

.tabuleiro-mousepad-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/tabuleiros/mousepad/WhatsApp-Image-2026-05-11-at-08.25.41.jpeg");
}

.tabuleiro-curvim-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/tabuleiros/curvim/WhatsApp-Image-2026-05-11-at-08.28.48.jpeg");
}

/* Card com <img>: enquadramento estável (object-fit) em vez de só background */
.product-image.product-image--photo {
  position: relative;
  overflow: hidden;
  background-color: #100b18;
  background-image: none;
}

.product-image.product-image--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-product-card .product-image.product-image--photo > img {
  object-fit: cover;
  object-position: center;
}

/* Leap listagem — classe .leap-in-hand-photo no <img> (ficheiro 632763); não usar só [src*=] (URL resolvida) */
.category-product-card .product-image.product-image--photo.relogio-leap-card > img.leap-in-hand-photo {
  position: absolute;
  inset: unset;
  left: 0;
  right: 0;
  width: 100%;
  top: -62%;
  height: 208%;
  bottom: auto;
  z-index: 0;
  object-fit: cover;
  object-position: 50% 8%;
}

.product-image.product-image--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72));
}

.relogio-dgt-2010-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1528819622765-d6bcf132f793?auto=format&fit=crop&w=1200&q=80");
}

.peca-zagreb-preto-branco-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/pecas-zagreb-pb/zagreb-pb-2.jpeg");
}

.peca-zagreb-madeira-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/zagreb-tom-madeira/zagreb-madeira-principal.jpeg");
}

.peca-german-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/pecas-german-madeira/WhatsApp-Image-2026-05-11-at-08.10.02-(2).jpeg");
}

.peca-fischer-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/pecas-german-plastico/WhatsApp-Image-2026-05-11-at-08.19.49-(1).jpeg");
}

.peca-jaehring-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/pecas-jaehring/jaehring-principal.jpg");
}

.peca-escolar-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/pecas-escolar/WhatsApp-Image-2026-05-11-at-08.56.18.jpeg");
}

.peca-madeira-german-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/PHOTO-2026-04-30-09-07-43.jpg");
}

.peca-sinquifield-2014-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/sinquifield-2014/PHOTO-2026-04-30-09-11-26-2.jpg");
}

.peca-sinquifield-2019-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/sinquifield-2019/PHOTO-2026-04-30-09-10-19-2.jpg");
}

.peca-madeira-zagreb-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/zagreb-madeira/PHOTO-2026-04-30-14-31-28.jpg");
}

.peca-madeira-fide-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/modelo-fide/PHOTO-2026-04-30-09-09-25.jpg");
}

.peca-fischer-spassky-image {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("assets/pecas-xadrez/fischer-spassky/PHOTO-2026-04-30-09-09-00.jpg");
}

.category-product-spec-line {
  margin-top: 0.2rem !important;
  color: #f2dfcf !important;
  font-size: 0.93rem !important;
}

.category-product-spec-line strong {
  color: #f2dfcf;
  font-weight: 600;
}

.category-product-cta {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}

.category-product-secondary {
  width: 100%;
}

.subcategory-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-price-old {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 400;
}

.product-price-current {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f5c992;
  letter-spacing: -0.01em;
}

.product-price-gift {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245, 221, 198, 0.6);
  margin-top: 0.15rem;
}

.category-obs-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(245, 221, 198, 0.7);
  background: rgba(255, 140, 43, 0.07);
  border: 1px solid rgba(255, 140, 43, 0.2);
  border-radius: 8px;
  padding: 0.45rem 0.95rem;
  letter-spacing: 0.01em;
}

.category-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 43, 0.55) !important;
  background: rgba(255, 140, 43, 0.1) !important;
  color: #f5c992 !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 0 1px rgba(255, 140, 43, 0.15);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-back-arrow:hover {
  background: rgba(255, 140, 43, 0.2) !important;
  box-shadow: 0 0 0 1px rgba(255, 140, 43, 0.35);
  transform: translateX(-3px);
  color: #ffd9a8 !important;
}

.subcategory-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #efe7ff;
  background: rgba(136, 0, 204, 0.12);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.subcategory-chip:hover {
  border-color: rgba(255, 140, 43, 0.45);
  background: rgba(255, 140, 43, 0.12);
  transform: translateY(-1px);
}

button.subcategory-chip {
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

.subcategory-chip.is-active {
  border-color: rgba(255, 140, 43, 0.7);
  background: rgba(255, 140, 43, 0.18);
  color: #fff;
}

.subcategory-block {
  scroll-margin-top: 130px;
}

.subcategory-header {
  margin-bottom: 1rem;
}

.subcategory-title {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.subcategory-description {
  margin: 0.35rem 0 0;
  color: var(--text-secondary);
  max-width: 62ch;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.product-breadcrumb a {
  color: #e5d7ff;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: #ffd4ae;
}

.product-detail-gallery-card,
.product-detail-info-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(140deg, rgba(40, 12, 78, 0.88), rgba(18, 8, 38, 0.94));
}

.product-detail-info-card .category-product-tag {
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  letter-spacing: 0.04em;
}

.product-detail-gallery-card {
  padding: 1rem;
}

.product-detail-gallery--cover .product-detail-main-image {
  object-fit: contain;
  object-position: top center;
}

.product-detail-gallery--cover .product-thumb img {
  object-fit: contain;
  object-position: center;
}

/* Relógio Leap — foto 632763: relógio na zona inferior do arquivo; frame evita crop central que corta o aparelho */
.product-detail-gallery--cover.product-detail-gallery--leap .product-detail-main-frame {
  position: relative;
  overflow: visible;
  border-radius: 12px;
  height: auto;
  width: 100%;
  background-color: #100b18;
}

.product-detail-gallery--cover.product-detail-gallery--leap .product-detail-main-frame .product-detail-main-image {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: top center;
  transform: none;
}

/* Classe aplicada por JS quando a foto ativa é a 632763 (mesmo ficheiro, URL absoluta ou relativa) */
.product-detail-gallery--cover.product-detail-gallery--leap .product-detail-main-frame .product-detail-main-image.leap-in-hand-photo {
  inset: auto;
  left: auto;
  right: auto;
  width: 100%;
  top: auto;
  height: auto;
  bottom: auto;
  object-fit: contain;
  object-position: top center;
  transform: none;
}

.product-detail-gallery--cover.product-detail-gallery--leap .product-thumb img.leap-in-hand-thumb {
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center;
}

.product-detail-main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  display: block;
}

.product-detail-thumbs {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.thumb-with-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.thumb-label {
  font-size: 0.72rem;
  color: #d4caea;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-thumb {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-thumb img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-thumb-crop--start {
  object-position: 22% center;
}

.product-thumb-crop--end {
  object-position: 78% center;
}

.product-thumb:hover {
  border-color: rgba(255, 140, 43, 0.45);
  transform: translateY(-2px);
}

.product-thumb.is-active {
  border-color: rgba(255, 140, 43, 0.82);
}

.product-detail-info-card {
  padding: 1.35rem;
}

/* CTA WhatsApp em largura total: ícone + texto centrados (d-grid estica o .btn) */
.product-detail-info-card .btn.wpp-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.product-detail-title {
  margin: 0.2rem 0 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.product-detail-description {
  margin-top: 0.8rem;
  color: var(--text-secondary);
}

.product-detail-specs {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #f2dfcf;
}

.product-detail-specs li {
  margin-bottom: 0.34rem;
}

.text-link {
  color: #ffd4ae;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.text-link:hover {
  color: var(--accent-orange);
  text-shadow: 0 8px 22px rgba(255, 140, 43, 0.45);
}

.wpp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.wpp-link::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
  background-color: currentColor;
  -webkit-mask-image: url("https://cdn.simpleicons.org/whatsapp");
  mask-image: url("https://cdn.simpleicons.org/whatsapp");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.institutional-card {
  display: block;
  text-decoration: none;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(28, 10, 52, 0.78);
  padding: 1.4rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.institutional-card h3 {
  color: var(--text-primary);
  font-size: 1.12rem;
}

.institutional-card p {
  color: var(--text-secondary);
  margin: 0.5rem 0 0.85rem;
}

.institutional-card span {
  color: #ffd4ae;
  font-weight: 500;
}

.institutional-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 43, 0.42);
}

.stat-card {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 10, 52, 0.78);
  padding: 1.25rem 1.1rem;
}

.stat-card h3 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.6rem;
  color: #ffc08d;
}

.stat-card p {
  margin: 0.55rem 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.collection-card {
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 43, 0.45);
  box-shadow: 0 16px 34px rgba(255, 140, 43, 0.12);
}

.collection-1 {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.15), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1580541832626-2a7131ee809f?auto=format&fit=crop&w=1200&q=80");
}

.collection-2 {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1586165368502-1bad197a6461?auto=format&fit=crop&w=1200&q=80");
}

.collection-3 {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("./assets/categorias/2d08d1de-afa3-4357-8285-c19ff04dcb20.png");
  background-position: center;
  filter: grayscale(100%);
}

.collection-4 {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1764250244454-e063cef0f730?auto=format&fit=crop&w=1200&q=80");
  filter: grayscale(100%);
}

.collection-5 {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1670234025697-84080c3fdb08?auto=format&fit=crop&w=1200&q=80");
  filter: grayscale(100%);
}

.collection-6 {
  background-image:
    linear-gradient(145deg, rgba(12, 9, 20, 0.2), rgba(12, 9, 20, 0.72)),
    url("https://images.unsplash.com/photo-1774366127010-9835ae1373a0?auto=format&fit=crop&w=1200&q=80");
  filter: grayscale(100%);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(4, 3, 7, 0.06) 35%, rgba(4, 3, 7, 0.92) 100%);
}

.collection-overlay h3 {
  margin: 0;
  color: #fff;
}

.collection-overlay p {
  margin: 0.55rem 0 0.85rem;
  color: #d4caea;
}

.collection-overlay a {
  color: #ffd4ae;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.collection-overlay a:hover {
  color: var(--accent-orange);
  text-shadow: 0 8px 22px rgba(255, 140, 43, 0.45);
}

.process-card {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(28, 10, 52, 0.78);
  padding: 1.35rem 1.2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.process-card:hover {
  border-color: rgba(255, 140, 43, 0.45);
  transform: translateY(-3px);
}

.process-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 43, 0.35);
  color: #ffd4ae;
  font-weight: 600;
  margin-bottom: 0.95rem;
}

.process-card h3 {
  margin: 0;
  font-size: 1.14rem;
}

.process-card p {
  margin: 0.6rem 0 0;
  color: var(--text-secondary);
}

.faq-box {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 10, 24, 0.72);
  overflow: hidden;
}

.faq-box details {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-box details:last-child {
  border-bottom: 0;
}

.faq-box summary {
  cursor: pointer;
  font-weight: 500;
  color: #f7f4ff;
}

.faq-box details[open] summary {
  color: #ffd0a6;
}

.faq-box p {
  margin: 0.65rem 0 0;
  color: var(--text-secondary);
}

.testimonials-subtitle {
  margin: 0.9rem auto 0;
  color: var(--text-secondary);
  max-width: 62ch;
}

/* Carrossel de depoimentos */
.testimonials-carousel {
  position: relative;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.5rem;
}

.testimonials-carousel .carousel-inner,
.testimonials-carousel .carousel-item {
  height: auto;
}

.testimonial-slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  height: 100%;
  padding: 2rem 3rem;
  border: 1px solid rgba(136, 0, 204, 0.28);
  background: linear-gradient(140deg, rgba(45, 14, 80, 0.80), rgba(22, 8, 44, 0.90));
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(136, 0, 204, 0.12) inset;
  text-align: center;
}

.testimonial-slide-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(136, 0, 204, 0.55);
  box-shadow: 0 0 20px rgba(136, 0, 204, 0.30);
  flex-shrink: 0;
}


.testimonial-slide-photo[alt="MN André Basso"] {
  object-position: center 15%;
}

.testimonial-slide-photo-duo {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
}

.duo-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(136, 0, 204, 0.55);
  box-shadow: 0 0 20px rgba(136, 0, 204, 0.30);
  position: relative;
  z-index: 2;
}

.duo-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 3px solid rgba(136, 0, 204, 0.35);
  box-shadow: 0 0 14px rgba(136, 0, 204, 0.20);
  margin-left: -20px;
  position: relative;
  z-index: 1;
}

.testimonial-slide-quote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #ede6ff;
  font-style: italic;
  border: none;
  padding: 0;
  max-width: 56ch;
}

@media (max-width: 575.98px) {
  .testimonial-slide-card {
    padding: 1.6rem 1.25rem;
    gap: 1rem;
    border-radius: 14px;
  }

  .testimonial-slide-photo {
    width: 72px;
    height: 72px;
  }

  .duo-photo {
    width: 72px;
    height: 72px;
  }

  .duo-logo {
    width: 54px;
    height: 54px;
    margin-left: -14px;
  }

  .testimonial-slide-quote {
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .testimonials-arrow.carousel-control-prev { left: -4px; }
  .testimonials-arrow.carousel-control-next { right: -4px; }

  .testimonials-arrow {
    width: 36px;
    height: 36px;
  }

  .testimonials-arrow-icon {
    font-size: 1.3rem;
  }
}

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  background: rgba(136, 0, 204, 0.22) !important;
  border: 1px solid rgba(136, 0, 204, 0.45) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  transition: background 0.2s ease;
}

.testimonials-arrow:hover {
  background: rgba(136, 0, 204, 0.45) !important;
}

.testimonials-arrow.carousel-control-prev { left: -22px; }
.testimonials-arrow.carousel-control-next { right: -22px; }

.testimonials-arrow-icon {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}

.testimonials-dots {
  position: static !important;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials-dots button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(136, 0, 204, 0.35) !important;
  border: 1px solid rgba(136, 0, 204, 0.55) !important;
  opacity: 1 !important;
  padding: 0 !important;
  flex: none !important;
  transition: background 0.2s ease;
}

.testimonials-dots button.active {
  background: #8800cc !important;
}

.testimonial-slide-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.testimonial-slide-author strong {
  font-size: 0.95rem;
  color: #f0eaff;
  font-family: Poppins, sans-serif;
}

.testimonial-slide-author span {
  font-size: 0.80rem;
  color: var(--text-secondary);
}

.feature-card {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(28, 10, 52, 0.78);
  padding: 1.4rem 1.25rem;
  color: #efe9ff;
  line-height: 1.6;
}

.lifestyle {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
}

.lifestyle-main {
  min-height: 420px;
  background-image: linear-gradient(145deg, rgba(55, 18, 100, 0.88), rgba(20, 8, 44, 0.93)),
    radial-gradient(circle at 40% 30%, rgba(136, 0, 204, 0.22), transparent 40%);
}

.lifestyle-side {
  min-height: 198px;
  background-image: linear-gradient(145deg, rgba(45, 14, 80, 0.88), rgba(16, 8, 35, 0.93)),
    radial-gradient(circle at 70% 40%, rgba(255, 140, 43, 0.35), transparent 30%);
}

.presence-quote {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #f6efe4;
}

.contact-box {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3rem 1.5rem;
  background: linear-gradient(145deg, rgba(40, 12, 75, 0.85), rgba(18, 8, 38, 0.90));
}

.contact-box p {
  color: var(--text-secondary);
  margin-top: 0.7rem;
}

.contact-box .contact-box-trust {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 193, 168, 0.88);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 6, 30, 0.85);
}

.footer-credit {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-credit a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--accent-purple);
}

.footer-heart {
  color: var(--accent-purple);
  font-size: 1.3em;
}

.footer-text {
  color: var(--text-secondary);
}

.footer-mini {
  color: #8f87a7;
  font-size: 0.9rem;
}

.footer-title {
  color: #f1ecff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.social-link {
  text-decoration: none;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-links a:hover,
.social-link:hover {
  color: var(--accent-orange);
  text-shadow: 0 8px 22px rgba(255, 140, 43, 0.45);
}

.social-links-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.footer-title-right {
  text-align: right;
}

/* Guarantee Section */
.guarantee-section {
  background: transparent;
  padding-top: 40px;
  padding-bottom: 160px;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(55, 15, 100, 0.80), rgba(28, 8, 55, 0.90));
  border: 1px solid rgba(136, 0, 204, 0.25);
  border-radius: 1.25rem;
  padding: 2.5rem 3rem;
  box-shadow: 0 8px 40px rgba(80, 0, 180, 0.12);
}

.guarantee-badge {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(18, 10, 36, 0.85);
  border: 2px solid #8800CC;
  box-shadow: 0 0 32px rgba(136, 0, 204, 0.35);
  line-height: 1;
}

.guarantee-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #8800CC;
  font-family: 'Poppins', sans-serif;
}

.guarantee-unit {
  font-size: 0.85rem;
  color: #8800CC;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em;
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 1.5rem;
  color: #f1ecff;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.guarantee-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 576px) {
  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
}

.footer-links-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer-links-col a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  word-break: break-all;
  overflow-wrap: break-word;
}

.footer-links-col a i {
  flex-shrink: 0;
  line-height: 1;
}

.footer-links-col a:hover {
  color: var(--accent-orange);
}

.footer-bottom-bar {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-credit-inline {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-credit-inline a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit-inline a:hover {
  color: var(--accent-purple);
}

.social-instagram::before,
.social-facebook::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 0.95rem;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.social-instagram::before {
  -webkit-mask-image: url("https://cdn.simpleicons.org/instagram");
  mask-image: url("https://cdn.simpleicons.org/instagram");
}

.social-facebook::before {
  -webkit-mask-image: url("https://cdn.simpleicons.org/facebook");
  mask-image: url("https://cdn.simpleicons.org/facebook");
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 0;
  text-decoration: none;
  color: #fff;
  font-size: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, #1f9b4c, #138f64);
  box-shadow: 0 10px 28px rgba(17, 128, 63, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(17, 128, 63, 0.5);
}

.floating-whatsapp::before {
  width: 1.6rem;
  height: 1.6rem;
  flex-basis: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 991px) {
  .section-spacing {
    padding: 76px 0;
  }

  .home-signature-section {
    padding-top: 82px !important;
  }

  .testimonials-arrow.carousel-control-prev { left: -8px; }
  .testimonials-arrow.carousel-control-next { right: -8px; }

  .brand-logo {
    height: 42px;
    transform: none !important;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-title-right {
    text-align: left;
  }

  .social-links-wrap {
    justify-content: flex-start;
  }
}

/* ── Gallery Lightbox ───────────────────────────────────────── */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.gallery-lightbox-close:hover { opacity: 1; }
.gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gallery-lightbox-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.gallery-lightbox-prev { left: 1rem; }
.gallery-lightbox-next { right: 1rem; }
@media (max-width: 576px) {
  .gallery-lightbox-prev { left: 0.4rem; }
  .gallery-lightbox-next { right: 0.4rem; }
}

/* cursor zoom na imagem principal */
.product-detail-main-image { cursor: zoom-in; }
