:root {
  --gold: #c49336;
  --gold-dark: #9a6c20;
  --ink: #1b1b1b;
  --muted: #6f6f6f;
  --cream: #f8f6f1;
  --white: #ffffff;
  --border: #e8e0d3;
  --shadow: 0 20px 50px rgba(27, 27, 27, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(90%, 1240px);
  margin-inline: auto;
}

/* =========================================
   CABEÇALHO
========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);

  border-top: 3px solid #25273a;
  border-bottom: 1px solid rgba(196, 147, 54, 0.15);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.header-content {
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

/* LOGO DO CABEÇALHO */

.logo {
  flex: 0 0 auto;

  width: 150px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  display: block;

  width: 100%;
  height: 100%;

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

  object-fit: contain;
  object-position: center;

  transform: none;
}

/* MENU */

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu a {
  position: relative;

  font-size: 14px;
  font-weight: 500;

  transition: color 0.25s;
}

.menu a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: width 0.25s;
}

.menu a:hover {
  color: var(--gold-dark);
}

.menu a:hover::after {
  width: 100%;
}

/* BOTÕES GERAIS */

.btn-header,
.btn-primary,
.btn-secondary,
.produto-card > a:not(.produto-img),
.produto-botao-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border-radius: 999px;

  font-weight: 600;

  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.btn-header {
  padding: 13px 21px;

  background: var(--gold);
  color: var(--white);

  font-size: 14px;
}

.btn-header:hover,
.btn-primary:hover,
.produto-card > a:not(.produto-img):hover {
  background: var(--gold-dark);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(196, 147, 54, 0.28);
}

.menu-mobile {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;

  background: var(--cream);
  color: var(--ink);

  cursor: pointer;

  font-size: 20px;
}

/* =========================================
   BANNER PRINCIPAL
========================================= */

.hero {
  position: relative;

  min-height: 685px;

  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      90deg,
      rgba(18, 18, 18, 0.76) 0%,
      rgba(18, 18, 18, 0.56) 33%,
      rgba(18, 18, 18, 0.22) 57%,
      rgba(18, 18, 18, 0.03) 100%
    ),
    url("./img/banner/banner-home-v2.png?v=6");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 63%,
      rgba(0, 0, 0, 0.14) 100%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  min-height: 685px;

  display: flex;
  align-items: center;
}

.hero-text {
  width: 100%;
  max-width: 625px;

  padding: 125px 0 70px;

  color: var(--white);
}

.hero-text > span,
.section-title > span,
.sobre-text > span,
.contato-info > span {
  color: #d9b66f;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 24px;

  font:
    700 clamp(48px, 6vw, 78px) / 0.98
    "Cormorant Garamond",
    serif;
}

.hero p {
  max-width: 590px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.btn-primary {
  padding: 14px 28px;

  background: var(--gold);
  color: var(--white);
}

.btn-secondary {
  padding: 14px 28px;

  border: 1px solid rgba(255, 255, 255, 0.78);

  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);

  transform: translateY(-2px);
}

/* =========================================
   SEÇÕES
========================================= */

section {
  padding: 92px 0;
}

.section-title {
  margin-bottom: 54px;

  text-align: center;
}

.section-title h2,
.sobre-text h2,
.contato-info h2 {
  margin-top: 10px;

  font:
    700 clamp(38px, 5vw, 56px) / 1.05
    "Cormorant Garamond",
    serif;
}

.section-title h2::after {
  content: "";

  display: block;

  width: 72px;
  height: 3px;

  margin: 18px auto 0;

  border-radius: 4px;

  background: var(--gold);
}

/* =========================================
   BENEFÍCIOS
========================================= */

.beneficios {
  padding: 52px 0;

  background: var(--white);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.beneficio-card {
  padding: 32px 24px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: var(--white);

  text-align: center;

  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.beneficio-card:hover {
  border-color: rgba(196, 147, 54, 0.35);

  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.beneficio-card i {
  margin-bottom: 17px;

  color: var(--gold);

  font-size: 31px;
}

.beneficio-card h3 {
  margin-bottom: 9px;

  font-size: 17px;
}

.beneficio-card p {
  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   COLEÇÕES
========================================= */

/* =========================================
   COLEÇÕES
========================================= */

.colecoes {
  background: var(--cream);
}

.colecoes-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 26px;
}

.colecao-card {
  min-width: 0;
  min-height: 500px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: var(--white);

  box-shadow:
    0 12px 35px
    rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.colecao-card:hover {
  border-color: rgba(196, 147, 54, 0.4);

  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.colecao-conteudo {
  position: relative;
  z-index: 2;

  padding: 36px 36px 25px;
}

.colecao-conteudo > span {
  color: var(--gold-dark);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.colecao-conteudo h3 {
  margin: 13px 0 16px;

  font:
    700 38px / 1.05
    "Cormorant Garamond",
    serif;
}

.colecao-conteudo p {
  min-height: 84px;

  margin-bottom: 24px;

  color: var(--muted);

  line-height: 1.75;
}

.colecao-conteudo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 0 23px;

  border-radius: 999px;

  background: var(--gold);
  color: var(--white);

  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.colecao-conteudo a:hover {
  background: var(--gold-dark);

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px
    rgba(196, 147, 54, 0.25);
}

.colecao-imagem {
  width: calc(100% - 50px);
  height: 205px;

  display: grid;
  place-items: center;

  overflow: hidden;

  margin: auto 25px 25px;

  border-radius: 21px;

  background:
    linear-gradient(
      145deg,
      #fbfaf7,
      #f0e9dc
    );
}

.colecao-imagem img {
  width: 100%;
  height: 100%;

  padding: 14px;

  object-fit: contain;
  object-position: center;

  transition: transform 0.35s;
}

.colecao-card:hover .colecao-imagem img {
  transform: scale(1.06);
}

.colecao-carregando,
.colecao-placeholder {
  width: 100%;
  height: 100%;

  display: grid;
  place-content: center;
  justify-items: center;

  gap: 7px;

  padding: 20px;

  color: var(--gold-dark);

  text-align: center;
}

.colecao-carregando i {
  font-size: 24px;
}

.colecao-carregando small {
  color: var(--muted);
}

.colecao-placeholder i {
  margin-bottom: 4px;

  color: var(--gold);

  font-size: 35px;
}

.colecao-placeholder span {
  color: var(--ink);

  font:
    700 23px / 1.1
    "Cormorant Garamond",
    serif;

  text-transform: capitalize;
}

.colecao-placeholder small {
  color: var(--muted);

  font-size: 11px;
}

/* =========================================
   PRODUTOS
========================================= */

.produtos {
  background: var(--white);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;
}

.produto-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: 22px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--white);

  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

.produto-card:hover {
  border-color: rgba(196, 147, 54, 0.45);

  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.produto-img {
  width: 100%;
  height: 240px;

  display: grid;
  place-items: center;

  overflow: hidden;

  margin-bottom: 19px;
  padding: 0;

  border-radius: 16px;

  background: #fafafa;
  color: inherit;

  transition: background 0.25s;
}

.produto-img:hover {
  background: #f8f5ef;
}

.produto-img img {
  width: 100%;
  height: 100%;

  padding: 14px;

  object-fit: contain;
  object-position: center;

  transition: transform 0.35s;
}

.produto-card:hover .produto-img img {
  transform: scale(1.05);
}

.marca,
.produto-marca {
  color: var(--gold-dark);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.produto-categoria {
  margin-top: 5px;

  color: var(--muted);

  font-size: 11px;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.produto-card h3 {
  margin: 9px 0 6px;

  font-size: 18px;
  line-height: 1.45;
}

.produto-card p {
  margin-bottom: 19px;

  color: var(--muted);

  font-size: 13px;
}

.produto-card > a:not(.produto-img) {
  align-self: flex-start;

  margin-top: auto;
  padding: 11px 21px;

  background: var(--gold);
  color: var(--white);

  font-size: 14px;
}

.produtos-carregando,
.produtos-mensagem {
  grid-column: 1 / -1;

  padding: 55px 20px;

  color: var(--muted);

  text-align: center;
}

.produtos-carregando i {
  margin-right: 8px;

  color: var(--gold);
}

.produto-sem-imagem {
  width: 100%;
  height: 100%;

  display: grid;
  place-content: center;
  justify-items: center;

  gap: 8px;

  color: #aaaaaa;
}

.produto-sem-imagem i {
  font-size: 35px;
}

.produtos-ver-todos {
  display: flex;
  justify-content: center;

  margin-top: 42px;
}

.produtos-ver-todos .btn-primary {
  width: auto;
}

/* =========================================
   SOBRE NÓS
========================================= */

.sobre {
  background: var(--cream);
}

.sobre-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  align-items: center;

  gap: 65px;
}

.sobre-img {
  width: 100%;

  aspect-ratio: 1.22 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 28px;

  background: #eee7dc;

  box-shadow: var(--shadow);
}

.sobre-img img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 0;

  object-fit: contain;
  object-position: center;

  border-radius: 28px;
}

.sobre-text h2 {
  margin: 12px 0 25px;
}

.sobre-text p {
  margin-bottom: 17px;

  color: var(--muted);

  line-height: 1.9;
}

.sobre-text .btn-primary {
  margin-top: 14px;
}

/* =========================================
   CONTATO
========================================= */

.contato {
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;

  gap: 55px;
}

.contato-info h2 {
  margin: 12px 0 28px;
}

.contato-info p {
  margin-bottom: 8px;

  color: var(--muted);

  line-height: 1.75;
}

.contato-info i {
  width: 24px;

  color: var(--gold);
}

.contato-info .btn-primary {
  margin-top: 21px;
}

.mapa iframe {
  width: 100%;
  height: 470px;

  border: 0;
  border-radius: 26px;

  box-shadow: var(--shadow);
}

/* =========================================
   RODAPÉ
========================================= */

.footer {
  padding-top: 66px;

  background: #151515;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;

  gap: 65px;

  padding-bottom: 48px;
}

.footer-logo {
  width: 170px;
  height: 105px;

  margin-bottom: 18px;
  padding: 8px;

  border-radius: 16px;

  background: var(--white);

  object-fit: contain;
  object-position: center;

  filter: none;
}

.footer h3 {
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: #c8c8c8;

  font-size: 14px;
  line-height: 1.8;
}

.footer a {
  display: block;

  margin-bottom: 8px;
}

.footer a:hover {
  color: #d8b368;
}

.copy {
  padding: 23px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);

  color: #aaaaaa;

  font-size: 13px;
  text-align: center;
}

/* =========================================
   WHATSAPP FIXO
========================================= */

.whatsapp-fixo {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1100;

  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #25d366;
  color: var(--white);

  font-size: 30px;

  box-shadow:
    0 13px 30px
    rgba(0, 0, 0, 0.25);

  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0
      rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow:
      0 0 0 16px
      rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 0 0 0
      rgba(37, 211, 102, 0);
  }
}

/* =========================================
   PÁGINA INDIVIDUAL DO PRODUTO
========================================= */

.pagina-produto {
  padding-top: 72px;

  background: var(--cream);
}

.produto-detalhes {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;

  align-items: start;

  gap: 64px;
}

.produto-galeria {
  display: grid;
  grid-template-columns: 92px 1fr;

  gap: 18px;
}

.produto-miniaturas {
  display: flex;
  flex-direction: column;

  gap: 13px;
}

.produto-miniatura {
  width: 92px;
  height: 80px;

  padding: 6px;

  border: 1px solid var(--border);
  border-radius: 13px;

  background: var(--white);

  cursor: pointer;

  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.produto-miniatura:hover,
.produto-miniatura.ativa {
  border-color: var(--gold);

  box-shadow:
    0 6px 16px
    rgba(196, 147, 54, 0.16);
}

.produto-miniatura img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.produto-imagem-principal {
  min-height: 520px;

  display: grid;
  place-items: center;

  padding: 32px;

  border: 1px solid var(--border);
  border-radius: 25px;

  background: var(--white);

  box-shadow:
    0 14px 35px
    rgba(0, 0, 0, 0.05);
}

.produto-imagem-principal img {
  width: 100%;
  max-height: 480px;

  object-fit: contain;
}

.produto-informacoes {
  position: sticky;
  top: 120px;

  padding: 42px;

  border: 1px solid var(--border);
  border-radius: 25px;

  background: var(--white);

  box-shadow: var(--shadow);
}

.produto-voltar {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 31px;

  color: var(--muted);

  font-size: 13px;
}

.produto-voltar:hover {
  color: var(--gold-dark);
}

.produto-informacoes h1 {
  margin: 13px 0 10px;

  font:
    700 clamp(38px, 4vw, 54px) / 1.05
    "Cormorant Garamond",
    serif;
}

.produto-sku {
  color: var(--muted);

  font-size: 14px;
}

.produto-divisor {
  height: 1px;

  margin: 25px 0;

  background: var(--border);
}

.produto-descricao {
  color: var(--muted);

  line-height: 1.85;
}

.produto-caracteristicas {
  display: grid;

  gap: 13px;

  margin: 27px 0;
}

.produto-caracteristicas div {
  display: flex;
  align-items: center;

  gap: 12px;

  color: #444444;

  font-size: 14px;
}

.produto-caracteristicas i {
  width: 20px;

  color: var(--gold);
}

.produto-botao-whatsapp {
  width: 100%;

  padding: 15px 22px;

  background: #25d366;
  color: var(--white);
}

.produto-botao-whatsapp:hover {
  background: #1faf54;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(37, 211, 102, 0.25);
}

.produto-aviso {
  margin-top: 15px;

  color: #8a8a8a;

  font-size: 12px;
  line-height: 1.6;

  text-align: center;
}

.produtos-relacionados {
  background: var(--white);
}

.produto-nao-encontrado {
  min-height: 55vh;

  display: grid;
  place-content: center;

  gap: 14px;

  padding: 80px 20px;

  text-align: center;
}

.produto-nao-encontrado h1 {
  font:
    700 50px
    "Cormorant Garamond",
    serif;
}

.produto-nao-encontrado a {
  justify-self: center;

  padding: 12px 23px;

  border-radius: 999px;

  background: var(--gold);
  color: var(--white);
}

/* =========================================
   CATÁLOGO
========================================= */

.catalogo-pagina {
  min-height: 100vh;

  background: var(--cream);
}

.catalogo-cabecalho {
  padding: 82px 0 36px;

  text-align: center;
}

.catalogo-cabecalho > span {
  color: var(--gold);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.catalogo-cabecalho h1 {
  margin-top: 10px;

  font:
    700 clamp(40px, 5vw, 58px) / 1.05
    "Cormorant Garamond",
    serif;
}

.catalogo-cabecalho p {
  max-width: 680px;

  margin: 18px auto 0;

  color: var(--muted);

  line-height: 1.8;
}

.catalogo-filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px;

  margin-bottom: 40px;
}

.catalogo-filtro {
  padding: 11px 20px;

  border: 1px solid var(--border);
  border-radius: 999px;

  background: var(--white);
  color: var(--ink);

  cursor: pointer;

  font-size: 13px;
  font-weight: 600;

  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.catalogo-filtro:hover,
.catalogo-filtro.ativo {
  border-color: var(--gold);

  background: var(--gold);
  color: var(--white);
}

.catalogo-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  padding-bottom: 90px;
}

/* =========================================
   RESPONSIVO — 1100PX
========================================= */

@media (max-width: 1100px) {
  .catalogo-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

/* =========================================
   RESPONSIVO — 1050PX
========================================= */

@media (max-width: 1050px) {
  .menu {
    gap: 20px;
  }

  .btn-header {
    display: none;
  }

  .beneficios-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

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

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

  .colecao-card img {
    height: 170px;
    max-height: 170px;
  }

  .produto-detalhes {
    grid-template-columns: 1fr;
  }

  .produto-informacoes {
    position: static;
  }
}

/* =========================================
   RESPONSIVO — 780PX
========================================= */

@media (max-width: 780px) {
  .header-content {
    min-height: 74px;
  }

  .logo {
    width: 118px;
    height: 62px;
  }

  .logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transform: none;
  }

  .menu-mobile {
    display: grid;
    place-items: center;
  }

  .menu {
    position: absolute;
    top: 74px;
    left: 0;

    width: 100%;

    display: grid;

    gap: 0;

    padding: 10px 5%;

    border-top: 1px solid var(--border);

    background: var(--white);

    box-shadow:
      0 18px 25px
      rgba(0, 0, 0, 0.07);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
      opacity 0.22s,
      visibility 0.22s,
      transform 0.22s;
  }

  .menu.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .menu a {
    padding: 14px 4px;

    border-bottom:
      1px solid
      #f0ede7;
  }

  .menu a::after {
    display: none;
  }

  .hero {
    min-height: 600px;

    background-position: 64% top;
  }

  .hero-content {
    min-height: 600px;
  }

  .hero-text {
    max-width: 520px;

    padding: 115px 0 65px;
  }

  section {
    padding: 70px 0;
  }

  .colecoes-grid,
  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .colecoes-grid {
    grid-template-columns: 1fr;
  }

  .sobre-grid {
    gap: 36px;
  }

  .sobre-img {
    width: 100%;
    height: auto;
    min-height: 0;

    aspect-ratio: 1.22 / 1;
  }

  .sobre-img img {
    width: 100%;
    height: 100%;
    min-height: 0;

    object-fit: contain;
  }

  .contato-grid {
    gap: 35px;
  }

  .mapa iframe {
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 32px;

    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .produto-galeria {
    grid-template-columns: 1fr;
  }

  .produto-miniaturas {
    order: 2;

    flex-direction: row;

    overflow-x: auto;

    padding-bottom: 5px;
  }

  .produto-miniatura {
    flex: 0 0 82px;

    width: 82px;
    height: 72px;
  }

  .produto-imagem-principal {
    min-height: 400px;

    padding: 20px;
  }

  .produto-informacoes {
    padding: 30px 24px;
  }
}

/* =========================================
   RESPONSIVO — 560PX
========================================= */

@media (max-width: 560px) {
  .container {
    width: min(92%, 1240px);
  }

  .logo {
    width: 106px;
    height: 58px;
  }

  .hero {
    min-height: 620px;

    background-position: 67% top;
  }

  .hero-content {
    min-height: 620px;
  }

  .hero-text {
    padding: 170px 0 55px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .beneficios-grid,
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .colecao-card {
    min-height: auto;

    padding: 30px 24px;
  }

  .colecao-card h3 {
    font-size: 34px;
  }

  .produto-img {
    height: 220px;
  }

  .produtos-ver-todos .btn-primary {
    width: 100%;
  }

  .sobre-img {
    aspect-ratio: 1 / 1;
  }

  .catalogo-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-fixo {
    right: 17px;
    bottom: 17px;

    width: 57px;
    height: 57px;
  }
}/* =========================================
   COMPLEMENTOS DO CATÁLOGO
========================================= */

.catalogo-conteudo {
  padding: 0 0 90px;
}

.catalogo-controles {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 25px;
  margin-bottom: 18px;
}

.catalogo-filtros {
  justify-content: flex-start;
  margin-bottom: 0;
}

.catalogo-busca {
  position: relative;
  display: block;
}

.catalogo-busca i {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--gold);
  transform: translateY(-50%);
  pointer-events: none;
}

.catalogo-busca input {
  width: 100%;
  height: 50px;
  padding: 0 17px 0 47px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.catalogo-busca input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 147, 54, 0.12);
}

.catalogo-contagem {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.catalogo-carregando,
.catalogo-vazio {
  grid-column: 1 / -1;
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
}

.catalogo-carregando i,
.catalogo-vazio > i {
  color: var(--gold);
  font-size: 38px;
}

.catalogo-vazio h2 {
  font:
    700 36px / 1.1
    "Cormorant Garamond",
    serif;
  color: var(--ink);
}

.catalogo-vazio p {
  max-width: 480px;
}

/* =========================================
   COMPLEMENTOS DA PÁGINA DO PRODUTO
========================================= */

.produto-carregando-pagina {
  min-height: 65vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  color: var(--muted);
}

.produto-carregando-pagina i {
  color: var(--gold);
  font-size: 35px;
}

.produto-imagem-vazia {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
}

.produto-imagem-vazia i {
  color: var(--gold);
  font-size: 48px;
}

.produto-nao-encontrado > i {
  color: var(--gold);
  font-size: 48px;
}

@media (max-width: 900px) {
  .catalogo-controles {
    grid-template-columns: 1fr;
  }

  .catalogo-busca {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .catalogo-filtros {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .catalogo-filtro {
    width: 100%;
  }
}/* =========================================
   NOVA PÁGINA DE DETALHES DO PRODUTO
========================================= */

[hidden] {
  display: none !important;
}

.pagina-produto-dinamica {
  min-height: 100vh;
  padding-top: 58px;
  background: var(--cream);
}

.detalhe-carregando {
  min-height: 62vh;

  display: grid;
  place-content: center;
  justify-items: center;

  gap: 13px;

  color: var(--muted);
}

.detalhe-carregando i {
  color: var(--gold);
  font-size: 38px;
}

.detalhe-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.85fr);

  align-items: start;

  gap: 52px;

  padding-bottom: 85px;
}

/* GALERIA */

.detalhe-galeria {
  min-width: 0;
}

.detalhe-imagem-principal {
  position: relative;

  width: 100%;
  min-height: 570px;

  display: grid;
  place-items: center;

  overflow: hidden;

  padding: 38px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: var(--white);

  box-shadow:
    0 16px 42px
    rgba(0, 0, 0, 0.06);
}

.detalhe-imagem-principal > img {
  width: 100%;
  height: 500px;

  object-fit: contain;
  object-position: center;

  transition:
    opacity 0.25s,
    transform 0.25s;
}

.detalhe-imagem-principal:hover > img {
  transform: scale(1.025);
}

.detalhe-seta {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);

  box-shadow:
    0 8px 20px
    rgba(0, 0, 0, 0.09);

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.detalhe-seta:hover {
  background: var(--gold);
  color: var(--white);

  transform:
    translateY(-50%)
    scale(1.06);
}

.detalhe-seta-anterior {
  left: 18px;
}

.detalhe-seta-proxima {
  right: 18px;
}

.detalhe-contador {
  position: absolute;
  right: 19px;
  bottom: 17px;

  padding: 7px 13px;

  border-radius: 999px;

  background: rgba(27, 27, 27, 0.78);
  color: var(--white);

  font-size: 11px;
  font-weight: 600;
}

.detalhe-sem-imagem {
  min-height: 390px;

  display: grid;
  place-content: center;
  justify-items: center;

  gap: 11px;

  color: var(--muted);
}

.detalhe-sem-imagem i {
  color: var(--gold);
  font-size: 55px;
}

.detalhe-miniaturas {
  display: flex;

  gap: 13px;

  overflow-x: auto;

  margin-top: 17px;
  padding: 2px 2px 10px;

  scrollbar-width: thin;
}

.detalhe-miniatura {
  flex: 0 0 106px;

  width: 106px;
  height: 88px;

  display: grid;
  place-items: center;

  padding: 7px;

  border: 2px solid transparent;
  border-radius: 15px;

  background: var(--white);

  cursor: pointer;

  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

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

.detalhe-miniatura.ativa {
  border-color: var(--gold);

  box-shadow:
    0 7px 18px
    rgba(196, 147, 54, 0.18);
}

.detalhe-miniatura img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* INFORMAÇÕES */

.detalhe-informacoes {
  position: sticky;
  top: 120px;

  padding: 42px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: var(--white);

  box-shadow: var(--shadow);
}

.detalhe-voltar {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 30px;

  color: var(--muted);

  font-size: 13px;
  font-weight: 500;
}

.detalhe-voltar:hover {
  color: var(--gold-dark);
}

.detalhe-etiquetas {
  display: flex;
  flex-wrap: wrap;

  align-items: center;

  gap: 9px;
}

.detalhe-marca {
  color: var(--gold-dark);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detalhe-categoria {
  padding: 6px 11px;

  border-radius: 999px;

  background: rgba(196, 147, 54, 0.12);
  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detalhe-informacoes h1 {
  margin: 14px 0 9px;

  font:
    700 clamp(42px, 4vw, 59px) / 1
    "Cormorant Garamond",
    serif;
}

.detalhe-sku {
  color: var(--muted);

  font-size: 13px;
}

.detalhe-divisor {
  height: 1px;

  margin: 27px 0;

  background: var(--border);
}

.detalhe-descricao {
  color: var(--muted);

  line-height: 1.9;
}

.detalhe-beneficios {
  display: grid;

  gap: 14px;

  margin: 28px 0;
}

.detalhe-beneficios div {
  display: flex;
  align-items: center;

  gap: 11px;

  color: #444444;

  font-size: 13px;
}

.detalhe-beneficios i {
  width: 20px;

  color: var(--gold);

  text-align: center;
}

.detalhe-comprar {
  width: 100%;
  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 25px;

  border-radius: 999px;

  background: #25d366;
  color: var(--white);

  font-size: 15px;
  font-weight: 700;

  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.detalhe-comprar:hover {
  background: #1faf54;

  transform: translateY(-2px);

  box-shadow:
    0 13px 29px
    rgba(37, 211, 102, 0.28);
}

.detalhe-aviso {
  margin-top: 15px;

  color: #8a8a8a;

  font-size: 11px;
  line-height: 1.6;

  text-align: center;
}

/* NÃO ENCONTRADO */

.detalhe-nao-encontrado {
  min-height: 62vh;

  display: grid;
  place-content: center;
  justify-items: center;

  gap: 13px;

  padding: 60px 20px;

  text-align: center;
}

.detalhe-nao-encontrado > i {
  color: var(--gold);

  font-size: 54px;
}

.detalhe-nao-encontrado h1 {
  font:
    700 48px / 1.05
    "Cormorant Garamond",
    serif;
}

.detalhe-nao-encontrado p {
  max-width: 510px;

  color: var(--muted);

  line-height: 1.7;
}

.detalhe-nao-encontrado a {
  margin-top: 9px;
  padding: 13px 24px;

  border-radius: 999px;

  background: var(--gold);
  color: var(--white);

  font-weight: 600;
}

/* RELACIONADOS */

.detalhe-relacionados {
  padding: 85px 0;

  background: var(--white);
}

/* RESPONSIVO */

@media (max-width: 1000px) {
  .detalhe-layout {
    grid-template-columns: 1fr;
  }

  .detalhe-informacoes {
    position: static;
  }
}

@media (max-width: 650px) {
  .pagina-produto-dinamica {
    padding-top: 35px;
  }

  .detalhe-imagem-principal {
    min-height: 390px;

    padding: 24px;
  }

  .detalhe-imagem-principal > img {
    height: 340px;
  }

  .detalhe-seta {
    width: 42px;
    height: 42px;
  }

  .detalhe-seta-anterior {
    left: 10px;
  }

  .detalhe-seta-proxima {
    right: 10px;
  }

  .detalhe-miniatura {
    flex-basis: 88px;

    width: 88px;
    height: 74px;
  }

  .detalhe-informacoes {
    padding: 30px 23px;
  }

  .detalhe-informacoes h1 {
    font-size: 44px;
  }
}