/*
Theme Name: 3D Criações Personalizados — v1.27.0 Amazon API PROD
Theme URI: https://www.instagram.com/3dcriacoespersonalizados/
Author: 3D Criações Personalizados
Description: Tema WordPress personalizado da 3D Criações Personalizados. Inclui catálogo, preços, descontos, categorias clicáveis, página exclusiva de chaveiros, visualização ampliada das fotos, WhatsApp e Instagram.
Version: 1.27.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: tresd-criacoes
Tags: custom-logo, custom-menu, featured-images, e-commerce, portfolio, responsive-layout
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
      --bg: #070707;
      --bg2: #101018;
      --text: #f8f8f8;
      --muted: #c9cad1;
      --soft: rgba(255,255,255,.075);
      --soft2: rgba(255,255,255,.12);
      --border: rgba(255,255,255,.15);
      --gold: #d9a74f;
      --gold2: #ffd983;
      --blue: #1878ff;
      --red: #ff3e35;
      --green: #3fca65;
      --yellow: #ffc83d;
      --shadow: 0 24px 70px rgba(0,0,0,.38);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at 18% 12%, rgba(24,120,255,.18), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(255,62,53,.16), transparent 27%),
        radial-gradient(circle at 74% 88%, rgba(217,167,79,.15), transparent 34%),
        linear-gradient(135deg, var(--bg), var(--bg2));
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(circle at center, #000, transparent 74%);
      opacity: .42;
      pointer-events: none;
      z-index: -1;
    }

    a { color: inherit; }
    img { max-width: 100%; }

    .page {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 24px 0 42px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 14px 0;
      margin-bottom: 36px;
      background: rgba(7,7,7,.72);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
      min-width: 245px;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      flex: 0 0 58px;
      border-radius: 16px;
      object-fit: cover;
      background: #000;
      box-shadow: 0 15px 32px rgba(0,0,0,.42);
    }

    .brand strong {
      display: block;
      font-size: 18px;
      line-height: 1.05;
      letter-spacing: .3px;
    }

    .brand span {
      display: block;
      color: var(--muted);
      margin-top: 3px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: var(--muted);
      padding: 10px 13px;
      border-radius: 999px;
      font-size: 14px;
      border: 1px solid transparent;
      transition: .2s;
    }

    nav a:hover {
      color: #fff;
      border-color: var(--border);
      background: rgba(255,255,255,.055);
    }

    .hero {
      min-height: calc(100vh - 130px);
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      align-items: center;
      gap: 38px;
      padding: 12px 0 18px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      border: 1px solid rgba(217,167,79,.40);
      background: rgba(217,167,79,.095);
      border-radius: 999px;
      color: var(--gold2);
      text-transform: uppercase;
      letter-spacing: 1.6px;
      font-size: 13px;
      font-weight: 900;
    }

    .badge-dot {
      width: 9px;
      height: 9px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(63,202,101,.65);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      70% { box-shadow: 0 0 0 12px rgba(63,202,101,0); }
      100% { box-shadow: 0 0 0 0 rgba(63,202,101,0); }
    }

    h1 {
      margin: 18px 0 18px;
      font-size: clamp(42px, 7vw, 88px);
      line-height: .93;
      letter-spacing: -2.5px;
      text-transform: uppercase;
    }

    .gold { color: var(--gold2); }
    .red { color: var(--red); }
    .blue { color: var(--blue); }
    .green { color: var(--green); }

    .hero p {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 23px);
      line-height: 1.62;
    }

    .cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn {
      display: inline-block;
      text-decoration: none;
      padding: 15px 20px;
      border-radius: 16px;
      font-weight: 900;
      transition: .2s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: #080808;
      background: linear-gradient(90deg, var(--gold), #ffe3a1);
      box-shadow: 0 16px 38px rgba(217,167,79,.18);
    }

    .btn-secondary {
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      color: #fff;
    }

    .hero-visual {
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 16px;
      background: rgba(255,255,255,.065);
      box-shadow: var(--shadow);
      position: relative;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(24,120,255,.42), rgba(255,62,53,.35), rgba(217,167,79,.35));
      filter: blur(22px);
      opacity: .5;
      z-index: -1;
    }

    .hero-visual > img {
      width: 100%;
      display: block;
      border-radius: 22px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .mini-grid img {
      height: 120px;
      width: 100%;
      object-fit: cover;
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.25);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 26px;
      max-width: 740px;
    }

    .stat {
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--soft);
    }

    .stat strong {
      display: block;
      font-size: 22px;
      color: var(--gold2);
    }

    .stat span {
      display: block;
      color: var(--muted);
      margin-top: 5px;
      font-size: 13px;
      line-height: 1.35;
    }

    section {
      margin-top: 86px;
      scroll-margin-top: 90px;
    }

    .section-head {
      text-align: center;
      max-width: 840px;
      margin: 0 auto 30px;
    }

    .section-head .tag {
      color: var(--gold2);
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 2.4px;
      margin-bottom: 10px;
    }

    .section-head h2 {
      margin: 0 0 12px;
      font-size: clamp(30px, 4.3vw, 56px);
      line-height: 1.05;
      letter-spacing: -1.3px;
    }

    .section-head p {
      color: var(--muted);
      margin: 0;
      font-size: 18px;
      line-height: 1.6;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .category {
      border: 1px solid var(--border);
      background: var(--soft);
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 16px 42px rgba(0,0,0,.18);
      min-height: 184px;
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #090909;
      font-weight: 900;
      margin-bottom: 14px;
      font-size: 18px;
    }

    .category h3 {
      margin: 0 0 9px;
      font-size: 20px;
    }

    .category p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 15px;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product {
      position: relative;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid var(--border);
      background: var(--soft);
      box-shadow: var(--shadow);
      min-height: 365px;
    }

    .product img {
      width: 100%;
      height: 100%;
      min-height: 365px;
      object-fit: cover;
      display: block;
      transition: transform .28s ease;
    }

    .product:hover img {
      transform: scale(1.035);
    }

    .overlay {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 15px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.82));
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(8px);
    }

    .overlay strong {
      display: block;
      font-size: 17px;
      margin-bottom: 4px;
    }

    .overlay span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.42;
    }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }

    .text-card {
      border: 1px solid var(--border);
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .text-card h2 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 54px);
      line-height: 1.06;
    }

    .text-card p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 17px;
      margin: 0 0 14px;
    }

    .checks {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .check-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
      line-height: 1.5;
    }

    .check {
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: rgba(217,167,79,.16);
      color: var(--gold2);
      border: 1px solid rgba(217,167,79,.36);
      font-weight: 900;
    }

    .image-card {
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--border);
      background: var(--soft);
      box-shadow: var(--shadow);
    }

    .image-card img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      object-fit: cover;
      display: block;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      counter-reset: step;
    }

    .step {
      counter-increment: step;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 20px;
      background: var(--soft);
      position: relative;
      min-height: 160px;
    }

    .step::before {
      content: counter(step, decimal-leading-zero);
      display: block;
      color: var(--gold2);
      font-weight: 900;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .step h3 {
      margin: 0 0 8px;
      font-size: 18px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .contact {
      margin-top: 88px;
      border: 1px solid rgba(217,167,79,.36);
      border-radius: 34px;
      padding: 38px;
      text-align: center;
      background:
        radial-gradient(circle at 16% 16%, rgba(24,120,255,.16), transparent 30%),
        radial-gradient(circle at 86% 22%, rgba(255,62,53,.15), transparent 30%),
        linear-gradient(135deg, rgba(217,167,79,.11), rgba(255,255,255,.045));
      box-shadow: var(--shadow);
    }

    .contact h2 {
      margin: 0 0 12px;
      font-size: clamp(34px, 5.5vw, 74px);
      line-height: .96;
      text-transform: uppercase;
    }

    .contact p {
      margin: 0 auto;
      color: var(--muted);
      max-width: 790px;
      line-height: 1.58;
      font-size: 19px;
    }

    .contact .cta { justify-content: center; }

    footer {
      margin-top: 44px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 14px;
    }

    .site-footer-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    @media (max-width: 980px) {
      .hero, .split { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .categories { grid-template-columns: repeat(2, 1fr); }
      .products { grid-template-columns: repeat(2, 1fr); }
      .process { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .page { width: min(100% - 24px, 1180px); padding-top: 14px; }
      header { position: static; align-items: flex-start; flex-direction: column; margin-bottom: 22px; }
      nav { justify-content: flex-start; }
      h1 { letter-spacing: -1px; }
      .cta { flex-direction: column; }
      .btn { text-align: center; }
      .stats, .categories, .products, .process, .mini-grid { grid-template-columns: 1fr; }
      .product, .product img { min-height: 310px; }
      .image-card img { min-height: 320px; }
      .text-card, .contact { padding: 24px 18px; }
      .site-footer-main { flex-direction: column; align-items: center; text-align: center; }
    }
  
    /* =========================================================
       AJUSTES DE INTERFACE APÓS REVISÃO DE QA
       ========================================================= */

    /* Reduz espaços excessivos entre os grandes blocos. */
    .hero {
      min-height: auto;
      padding-top: 42px;
      padding-bottom: 28px;
    }

    section {
      margin-top: 68px;
    }

    .section-head {
      margin-bottom: 38px;
    }

    /* Mais respiro entre categorias e produtos. */
    .categories {
      gap: 22px;
    }

    .products {
      gap: 30px 24px;
    }

    /* Hierarquia visual mais clara nos cards. */
    .category {
      padding: 24px;
      min-height: 170px;
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .category:hover {
      transform: translateY(-3px);
      border-color: rgba(217,167,79,.38);
      background: rgba(255,255,255,.095);
    }

    .category h3 {
      font-size: 21px;
      line-height: 1.22;
    }

    .product {
      min-height: 390px;
      isolation: isolate;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .product:hover {
      transform: translateY(-4px);
      border-color: rgba(217,167,79,.42);
      box-shadow: 0 28px 75px rgba(0,0,0,.48);
    }

    .product img {
      min-height: 390px;
    }

    .overlay {
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 18px;
      background: linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.91));
    }

    /* Limita títulos longos a duas linhas e descrições a três. */
    .overlay strong,
    .product-title,
    .product__title,
    [data-product-title] {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      min-height: 44px;
      font-size: 18px;
      line-height: 1.24;
      margin-bottom: 7px;
      text-wrap: balance;
    }

    .overlay span,
    .product-description,
    .product__description {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      line-height: 1.48;
    }

    /* Hierarquia preparada para preço e desconto. */
    .product-price,
    .price,
    [data-price] {
      display: block;
      margin-top: 12px;
      font-size: 21px;
      line-height: 1.1;
      font-weight: 900;
      color: var(--gold2);
    }

    .product-old-price,
    .old-price,
    [data-old-price] {
      margin-right: 8px;
      color: var(--muted);
      font-size: 13px;
      text-decoration: line-through;
    }

    .product-discount,
    .discount,
    [data-discount] {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-top: 8px;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(63,202,101,.16);
      border: 1px solid rgba(63,202,101,.36);
      color: #92f0aa;
      font-size: 12px;
      font-weight: 900;
    }

    .product-actions,
    .card-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 14px;
      flex-wrap: wrap;
    }

    .product-actions a,
    .product-actions button,
    .card-actions a,
    .card-actions button {
      min-height: 42px;
    }

    .split {
      gap: 30px;
    }

    .text-card {
      padding: 32px;
    }

    .image-card img {
      min-height: 440px;
    }

    @media (max-width: 980px) {
      section {
        margin-top: 60px;
      }

      .products {
        gap: 24px 20px;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 18px;
        padding-bottom: 12px;
      }

      section {
        margin-top: 52px;
      }

      .section-head {
        margin-bottom: 26px;
      }

      .categories,
      .products {
        gap: 20px;
      }

      .product,
      .product img {
        min-height: 340px;
      }

      .overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 15px;
      }

      .overlay strong,
      .product-title,
      .product__title,
      [data-product-title] {
        min-height: auto;
        font-size: 17px;
      }

      .text-card {
        padding: 24px 20px;
      }

      .image-card img {
        min-height: 310px;
      }
    }

/* Integração com WordPress */
body.admin-bar header { top: 32px; }
.site-content { min-height: 60vh; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { width: 50px; height: 50px; border-radius: 14px; object-fit: cover; }
.menu { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.menu li { margin: 0; }
.menu a {
  display: block; text-decoration: none; color: var(--muted);
  padding: 10px 13px; border-radius: 999px; font-size: 14px;
  border: 1px solid transparent; transition: .2s;
}
.menu a:hover, .menu .current-menu-item > a {
  color: #fff; border-color: var(--border); background: rgba(255,255,255,.055);
}
.product-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.product-link {
  display: inline-flex; margin-top: 12px; padding: 10px 13px;
  border-radius: 12px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.17); text-decoration: none;
  font-size: 13px; font-weight: 900;
}
.product-link:hover { background: rgba(255,255,255,.17); }
.product-placeholder {
  min-height: 390px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(24,120,255,.22), rgba(217,167,79,.18));
  color: var(--muted); text-align: center; padding: 30px;
}
.wp-content-card {
  border: 1px solid var(--border); border-radius: 28px; background: var(--soft);
  padding: 30px; box-shadow: var(--shadow); color: var(--muted); line-height: 1.7;
}
.wp-content-card h1, .wp-content-card h2, .wp-content-card h3 { color: var(--text); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.pagination a, .pagination span {
  padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 10px; text-decoration: none;
}
.notice-store {
  margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.5;
}
.woocommerce .page-title { color: var(--text); }
.woocommerce ul.products li.product {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 15px; background: var(--soft);
}
@media (max-width: 782px) {
  body.admin-bar header { top: 46px; }
}



/* =========================================================
   V1.3 — CORREÇÃO DOS BOTÕES DA SEÇÃO DE ORÇAMENTO
   Garante que nenhuma camada visual ou prévia do WordPress
   fique por cima dos links e bloqueie o clique.
   ========================================================= */
.contact {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.contact .cta {
  position: relative;
  z-index: 50;
  pointer-events: auto !important;
}

body .contact .cta a.btn,
body .contact .cta .btn {
  position: relative;
  z-index: 51;
  pointer-events: auto !important;
  cursor: pointer !important;
  touch-action: manipulation;
  user-select: none;
}

body .contact .cta a.btn * {
  pointer-events: none;
}

body .contact .cta a.btn:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: 4px;
}

.site-footer {
  position: relative;
  z-index: 1;
}


/* =========================================================
   V1.6 — CATEGORIA CHAVEIROS
   Categoria clicável e página própria com catálogo responsivo.
   ========================================================= */
.category-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.category-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  pointer-events: none;
}

.category-link:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: 5px;
}

.category-featured {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,200,61,.20), transparent 34%),
    linear-gradient(145deg, rgba(24,120,255,.17), rgba(255,62,53,.12)),
    var(--soft);
  border-color: rgba(217,167,79,.38);
}

.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2px;
}

.category-cta span {
  transition: transform .2s ease;
}

.category-link:hover .category-cta span {
  transform: translateX(4px);
}

.section-head h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -1.5px;
  text-transform: none;
}

.catalog-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 34px;
}

.catalog-note {
  max-width: 760px;
  margin: -12px auto 26px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.product-keychain .overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.90));
}

.product-keychain .product-link {
  background: linear-gradient(90deg, rgba(217,167,79,.95), rgba(255,227,161,.95));
  border-color: transparent;
  color: #090909;
}

.product-keychain .product-link:hover {
  background: linear-gradient(90deg, var(--gold2), #fff0c4);
}

@media (max-width: 640px) {
  .catalog-actions {
    flex-direction: column;
  }

  .catalog-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   CHAVEIROS — FOTO AMPLIADA (VERSÃO 1.21.0)
   ========================================================= */
.catalog-actions-single {
  justify-content: center;
}

.product-image-button {
  display: block;
  width: 100%;
  min-height: 390px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: zoom-in;
}

.product-image-button img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.product-image-button:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: -5px;
}

.keychain-card-actions {
  display: flex;
  align-items: stretch;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.keychain-card-actions .product-link {
  flex: 1 1 132px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin-top: 0;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}

.product-keychain .product-view-image {
  background: rgba(14, 14, 18, .78);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.product-keychain .product-view-image:hover,
.product-keychain .product-view-image:focus-visible {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .46);
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(9px);
  cursor: zoom-out;
}

.image-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 96vw);
  max-height: 92vh;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: #101014;
  box-shadow: 0 35px 110px rgba(0, 0, 0, .72);
}

.image-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(92vh - 92px);
  border-radius: 16px;
  object-fit: contain;
  background: #080808;
}

.image-lightbox__title {
  margin: 13px 48px 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.image-lightbox__close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font: 700 30px/1 Arial, sans-serif;
  cursor: pointer;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: #fff;
  color: #080808;
}

@media (max-width: 640px) {
  .product-image-button,
  .product-image-button img {
    min-height: 310px;
  }

  .image-lightbox {
    padding: 10px;
  }

  .image-lightbox__panel {
    width: 100%;
    padding: 10px;
    border-radius: 18px;
  }

  .image-lightbox__image {
    max-height: calc(92vh - 78px);
    border-radius: 12px;
  }

  .image-lightbox__close {
    top: 18px;
    right: 18px;
  }
}


/* V1.14 — NOVAS CATEGORIAS E SUBCATEGORIAS */
.category-subheading {
  margin-top: 42px;
  margin-bottom: 20px;
}

.category-subcategories {
  margin-bottom: 42px;
}

.category-product-link {
  display: block;
  text-decoration: none;
}

.category-product-link:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: 4px;
}


.hero-visual > img.js-hero-rotator {
  transition: opacity .35s ease, transform .35s ease;
}

.hero-visual > img.js-hero-rotator.is-swapping {
  opacity: .7;
  transform: scale(.99);
}


.catalog-actions-signs {
  justify-content: center;
  margin-top: 22px;
}

.catalog-actions-signs .btn {
  max-width: 100%;
  text-align: center;
}

/* =========================================================
   V1.22 — HOME MAIS LIMPA
   Menos informação simultânea, navegação por categorias
   compacta e blocos principais com maior respiro visual.
   ========================================================= */

.home .hero-clean {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr);
  gap: clamp(34px, 5vw, 72px);
  padding-top: 54px;
  padding-bottom: 34px;
}

.home .hero-clean h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.6vw, 82px);
  line-height: .96;
}

.home .hero-clean .hero-copy > p {
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.58;
}

.home .hero-visual-clean {
  padding: 12px;
  border-radius: 28px;
  background: rgba(255,255,255,.045);
}

.home .hero-visual-clean > img {
  aspect-ratio: 4 / 4.15;
  border-radius: 20px;
}

.home .hero-points {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.home .hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home .hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 14px rgba(255,217,131,.5);
}

.home .section-head-compact {
  max-width: 720px;
  margin-bottom: 28px;
}

.home .section-head-compact h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.home .section-head-compact p {
  font-size: 16px;
}

.home .home-categories-section,
.home .home-products-section,
.home .home-custom-section,
.home .home-process-section {
  margin-top: 76px;
}

.home .category-pills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home .category-pill {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home .category-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(217,167,79,.42);
  background: rgba(255,255,255,.075);
}

.home .category-pill-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(217,167,79,.24), rgba(24,120,255,.17));
  color: var(--gold2);
  font-weight: 900;
}

.home .category-pill-arrow {
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}

.home .category-pill:hover .category-pill-arrow {
  transform: translateX(3px);
  color: var(--gold2);
}

.home .products-clean {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home .products-clean .product,
.home .products-clean .product img,
.home .products-clean .product-placeholder {
  min-height: 340px;
}

.home .products-clean .product {
  border-radius: 22px;
}

.home .products-clean .overlay {
  padding: 15px;
}

.home .products-clean .overlay strong {
  min-height: auto;
  font-size: 17px;
}

.home .products-clean .product-meta {
  margin-top: 8px;
}

.home .products-clean .product-price {
  margin-top: 0;
  font-size: 19px;
}

.home .home-more-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home .home-custom-section {
  align-items: stretch;
  gap: 24px;
}

.home .home-custom-image img {
  min-height: 390px;
  height: 100%;
}

.home .home-custom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
}

.home .home-custom-copy h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.03;
}

.home .process-clean {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home .process-clean .step {
  min-height: 180px;
  padding: 24px;
}

.home .step-number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.home .contact-clean {
  margin-top: 76px;
  padding: 42px 30px;
}

.home .contact-clean .tag {
  margin-bottom: 12px;
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.home .contact-clean h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.home .contact-clean p {
  font-size: 17px;
}

@media (max-width: 1040px) {
  .home .category-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home .hero-clean {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .home .hero-visual-clean {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .home .products-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home .hero-clean {
    gap: 28px;
    padding-top: 12px;
  }

  .home .hero-clean h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .home .hero-points {
    gap: 8px 14px;
    margin-top: 20px;
  }

  .home .category-pills {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home .category-pill {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 62px;
    padding: 10px;
  }

  .home .category-pill-arrow {
    display: none;
  }

  .home .products-clean {
    grid-template-columns: 1fr;
  }

  .home .products-clean .product,
  .home .products-clean .product img,
  .home .products-clean .product-placeholder {
    min-height: 320px;
  }

  .home .process-clean {
    grid-template-columns: 1fr;
  }

  .home .home-categories-section,
  .home .home-products-section,
  .home .home-custom-section,
  .home .home-process-section,
  .home .contact-clean {
    margin-top: 56px;
  }

  .home .contact-clean {
    padding: 30px 20px;
  }
}

.home .home-anchor-alias {
  height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: 100px;
}

.home .js-service-rotator .home-custom-image img,
.home .js-service-rotator .home-custom-copy,
.home .js-service-rotator .home-custom-copy .badge,
.home .js-service-rotator .home-custom-copy h2,
.home .js-service-rotator .home-custom-copy p,
.home .js-service-rotator .home-custom-copy .cta {
  transition: opacity .18s ease, transform .18s ease;
}

.home .js-service-rotator.is-swapping .home-custom-image img,
.home .js-service-rotator.is-swapping .home-custom-copy .badge,
.home .js-service-rotator.is-swapping .home-custom-copy h2,
.home .js-service-rotator.is-swapping .home-custom-copy p,
.home .js-service-rotator.is-swapping .home-custom-copy .cta {
  opacity: .18;
  transform: translateY(4px);
}

.home .home-service-slider {
  position: relative;
  overflow: hidden;
}

.home .service-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,10,16,.82);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home .service-slider-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(217,167,79,.55);
  background: rgba(20,20,30,.95);
}

.home .service-slider-arrow-prev {
  left: 18px;
}

.home .service-slider-arrow-next {
  right: 18px;
}

.home .service-slider-controls {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.home .service-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home .service-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.home .service-slider-dot:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,.45);
}

.home .service-slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

@media (max-width: 980px) {
  .home .service-slider-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .home .service-slider-arrow:hover {
    transform: scale(1.04);
  }

  .home .service-slider-arrow-prev {
    left: 20px;
  }

  .home .service-slider-arrow-next {
    right: 20px;
  }

  .home .service-slider-controls {
    padding-right: 118px;
  }
}

@media (max-width: 640px) {
  .home .service-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .home .service-slider-controls {
    padding-right: 104px;
  }
}

/* Reel do Instagram em destaque na página inicial. */
.home .home-reel-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: 42px;
  margin-top: 76px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,62,53,.14), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(24,120,255,.13), transparent 38%),
    rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}

.home .home-reel-copy .tag {
  margin-bottom: 12px;
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.home .home-reel-copy h2 {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.home .home-reel-copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.home .home-reel-card {
  width: 100%;
  max-width: 440px;
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(0,0,0,.42);
}

.home .home-reel-frame {
  position: relative;
  width: 100%;
  min-height: 640px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 21px;
  background: #fff;
}

.home .home-reel-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .home .home-reel-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home .home-reel-card {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .home .home-reel-section {
    margin-top: 56px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .home .home-reel-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .home .home-reel-frame,
  .home .home-reel-frame iframe {
    min-height: 560px;
  }
}

/* Ajustes do embed oficial do Instagram. */
.home .home-reel-frame {
  min-height: 680px;
  aspect-ratio: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.home .home-reel-frame .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.home .home-reel-frame iframe {
  width: 100% !important;
  height: auto;
  min-height: 680px;
}

@media (max-width: 640px) {
  .home .home-reel-frame,
  .home .home-reel-frame iframe {
    min-height: 620px;
  }
}

.catalog-archive .signs-showcase-slider {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
  margin: 28px 0 34px;
}

.catalog-archive .signs-showcase-media,
.catalog-archive .signs-showcase-copy {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}

.catalog-archive .signs-showcase-media {
  min-height: 420px;
}

.catalog-archive .signs-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: opacity .18s ease, transform .18s ease;
}

.catalog-archive .signs-showcase-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-archive .signs-showcase-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.04;
}

.catalog-archive .signs-showcase-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.catalog-archive .signs-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,10,16,.82);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.catalog-archive .signs-slider-arrow-prev { left: 18px; }
.catalog-archive .signs-slider-arrow-next { right: 18px; }

.catalog-archive .signs-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.catalog-archive .signs-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  transition: width .2s ease, background .2s ease, transform .2s ease;
}

.catalog-archive .signs-slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.catalog-archive .js-signs-slider.is-swapping .signs-showcase-media img,
.catalog-archive .js-signs-slider.is-swapping .signs-showcase-copy h2,
.catalog-archive .js-signs-slider.is-swapping .signs-showcase-copy p,
.catalog-archive .js-signs-slider.is-swapping .signs-showcase-copy .cta,
.catalog-archive .js-signs-slider.is-swapping .signs-slider-dots {
  opacity: .18;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

@media (max-width: 980px) {
  .catalog-archive .signs-showcase-slider {
    grid-template-columns: 1fr;
  }

  .catalog-archive .signs-showcase-media,
  .catalog-archive .signs-showcase-media img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .catalog-archive .signs-showcase-copy {
    padding: 22px;
  }

  .catalog-archive .signs-showcase-copy h2 {
    font-size: 32px;
  }

  .catalog-archive .signs-showcase-media,
  .catalog-archive .signs-showcase-media img {
    min-height: 300px;
  }

  .catalog-archive .signs-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* v1.25.1 — blocos de conteúdo SEO e guias. */
.home .home-seo-intro,
.home .home-guides-section {
  margin-top: 76px;
}

.home .home-seo-intro-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(217,167,79,.13), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}

.home .home-seo-intro-card h2 {
  max-width: 900px;
  margin: 12px 0 22px;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
}

.home .home-seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home .home-seo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.home .home-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.home .home-seo-links a {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--gold2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.home .home-seo-links a:hover {
  border-color: rgba(217,167,79,.42);
  background: rgba(255,255,255,.08);
}

.home .home-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home .home-guide-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home .home-guide-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.22;
}

.home .home-guide-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.home .home-guide-card .product-link {
  margin-top: auto;
}

.catalog-archive .section-head > p,
.tax-categoria_produto_3d .section-head > p {
  max-width: 960px;
  line-height: 1.75;
}

.wp-content-card {
  line-height: 1.78;
}

.wp-content-card h2,
.wp-content-card h3 {
  margin-top: 1.8em;
}

.wp-content-card a:not(.btn) {
  color: var(--gold2);
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .home .home-seo-copy,
  .home .home-guides-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .home .home-seo-intro,
  .home .home-guides-section {
    margin-top: 56px;
  }

  .home .home-seo-copy,
  .home .home-guides-grid {
    grid-template-columns: 1fr;
  }

  .home .home-seo-intro-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .home .home-guide-card {
    min-height: 0;
  }
}


/* === V1.26.0 AMAZON PRODUCT CARDS === */

/*
 * Regras isoladas da vitrine Amazon.
 * Não altera os cards do catálogo próprio da 3D Criações.
 */
.home .home-amazon-section .amazon-product {
  height: 430px;
  min-height: 430px;
  overflow: hidden;
  border-radius: 22px;
}

.home .home-amazon-section .amazon-product img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.home .home-amazon-section .amazon-product .overlay {
  min-height: 158px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(
      to top,
      rgba(4,4,5,.98) 0%,
      rgba(4,4,5,.93) 72%,
      rgba(4,4,5,.72) 100%
    );
}

.home .home-amazon-section .amazon-product .overlay strong {
  display: -webkit-box;
  min-height: 2.7em;
  max-height: 2.7em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 16px;
  line-height: 1.35;
}

.home .home-amazon-section .amazon-product .product-meta {
  gap: 6px 10px;
  margin-top: 9px;
}

.home .home-amazon-section .amazon-product .product-price {
  margin-top: 0;
  font-size: 20px;
  font-weight: 900;
}

.home .home-amazon-section .amazon-product .product-meta span:not(.product-price) {
  color: var(--muted);
  font-size: 12px;
}

.home .home-amazon-section .amazon-product .product-link {
  align-self: flex-start;
  margin-top: 12px;
  padding: 10px 15px;
  color: #111;
  background:
    linear-gradient(
      135deg,
      var(--gold2),
      var(--gold)
    );
  border-color: transparent;
}

.home .home-amazon-section .amazon-product .product-link:hover {
  color: #111;
  background:
    linear-gradient(
      135deg,
      #ffe6a8,
      var(--gold2)
    );
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .home .home-amazon-section .amazon-product {
    height: 410px;
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  .home .home-amazon-section .amazon-product {
    height: 390px;
    min-height: 390px;
  }

  .home .home-amazon-section .amazon-product .overlay {
    min-height: 154px;
    padding: 16px;
  }
}

/* === END V1.26.0 AMAZON PRODUCT CARDS === */


/* === V1.26.0 AMAZON RESPONSIVE CENTERED GRID === */

/*
 * A vitrine Amazon usa flex-wrap para que linhas incompletas
 * permaneçam centralizadas sem alterar a grade dos produtos próprios.
 */
.home .home-amazon-section .products.products-clean {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.home .home-amazon-section .products.products-clean .amazon-product {
  flex: 0 1 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  min-width: 0;
}

@media (max-width: 980px) {
  .home .home-amazon-section .products.products-clean .amazon-product {
    flex-basis: calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .home .home-amazon-section .products.products-clean .amazon-product {
    flex-basis: 100%;
    width: 100%;
  }
}

/* === END V1.26.0 AMAZON RESPONSIVE CENTERED GRID === */
