@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.top-line {
  height: 4px;
  background-color: #EAC266;
}

/* Navbar */
.navbar-custom {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 70px;
  z-index: 10;
  position: relative;
}

.navbar-custom .navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-custom .nav-link {
  color: #000;
  margin-right: 1.5rem;
  font-weight: 400;
  transition: all 0.2s ease;
}

.navbar-custom .nav-link:hover {
  color: #EAC266;
  font-weight: 700;
}

.navbar-custom a i {
  color: #000;
  transition: color 0.2s ease;
}

.navbar-custom a i:hover {
  color: #EAC266;
}

/* Mobile overlay menu */
.mobile-menu-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 15;
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-20px);
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-overlay ul li {
  margin: 1.5rem 0;
}

.mobile-menu-overlay ul li a {
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-overlay ul li a:hover {
  color: #EAC266;
}

.mobile-menu-overlay .social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu-overlay .social-icons a {
  color: #EAC266;
  font-size: 1.8rem;
}

/* Botão mobile circular */
.navbar-toggler {
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #494849;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.navbar-toggler span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #494849;
  position: relative;
}

.navbar-toggler span::before,
.navbar-toggler span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #494849;
  left: 0;
}

.navbar-toggler span::before {
  top: -6px;
}

.navbar-toggler span::after {
  bottom: -6px;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Google Sans", sans-serif;
  width: 100%;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

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

/* Banner fullscreen */
.banner-fullscreen {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 74px);
  position: relative;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Scroll down button */
.scroll-down {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}
/* Seção Sobre */
.sobre {
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  background-color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.sobre h2 {
  font-size: 2.2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sobre p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.sobre a {
  color: #EAC266;
  font-weight: 600;
  text-decoration: none;
}

.selo-placeholder img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.imagem-placeholder {
  width: 100%;
  overflow: hidden;
}

.imagem-placeholder img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .sobre .col-lg-4,
  .sobre .col-lg-8 {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .selo-placeholder {
    margin: 0 auto 1rem auto;
    text-align: center;
  }
  .selo-placeholder img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
  }
  .navbar-custom .navbar-brand img {
    height: 42px;
  }
}
/* Rodapé */
footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 3rem 0;
  overflow-x: hidden;
}

footer h5 {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #EAC266;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin: 0.5rem 0;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: #EAC266;
}

footer .social-icons a {
  font-size: 1.8rem;
  color: #EAC266;
  margin-right: 1rem;
}

footer .text-center {
  font-size: 0.85rem;
  color: #fff;
  margin-top: 1rem;
}

/* ==========================
   PÁGINA EMPRESA - SAMEC
   ========================== */
.pagina-empresa {
  font-family: "Google Sans", Arial, sans-serif;
  color: #1c1b1b;
  background: #fcf9f8;
}

.py-lg-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

/* HERO */
.empresa-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.empresa-hero-overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.42);*/
}

.empresa-subtitulo {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #666;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.85rem;
  text-transform: uppercase;
  text-shadow: 0px 0px 5px #FFF;
}

.empresa-titulo {
  color: #ffffff;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

/* TÍTULOS */
.empresa-bloco-titulo {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  color: #1c1b1b;
}

.empresa-subtitulo-secao {
  display: inline-block;
  color: #775a19;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

/* TEXTO */
.empresa-texto,
.empresa-texto p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #4e4639;
}

.empresa-texto p:last-child {
  margin-bottom: 0;
}

/* SELO */
.empresa-selo {
  display: inline-block;
  padding: 14px 26px;
  border: 2px solid #775a19;
  color: #775a19;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

/* IMAGEM SOBRE */
.empresa-imagem-destaque {
  position: relative;
}

.empresa-imagem-destaque img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.empresa-ano-fundacao {
  position: absolute;
  left: -30px;
  bottom: -30px;
  background: #ffffff;
  padding: 28px 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  min-width: 220px;
}

.empresa-ano-fundacao strong {
  display: block;
  font-size: 3.3rem;
  line-height: 1;
  color: #775a19;
  font-weight: 700;
}

.empresa-ano-fundacao span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: #1c1b1b;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-weight: 600;
}

/* PILARES */
.empresa-pilares {
  background: #f6f3f2;
}

.empresa-card {
  background: #ffffff;
  padding: 42px 34px;
  transition: all 0.35s ease;
  border: 1px solid #ece7e2;
  height: 100%;
}

.empresa-card:hover {
  background: #1c1b1b;
  transform: translateY(-6px);
}

.empresa-card-icone {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #775a19;
  transition: all 0.35s ease;
}

.empresa-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1c1b1b;
  transition: all 0.35s ease;
}

.empresa-card p {
  margin-bottom: 0;
  color: #4e4639;
  line-height: 1.8;
  transition: all 0.35s ease;
}

.empresa-card:hover h3 {
  color: #ffffff;
}

.empresa-card:hover p {
  color: #d8d3cd;
}

.empresa-card:hover .empresa-card-icone {
  color: #c5a059;
}

/* DETALHE */
.empresa-img-horizontal {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.empresa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #775a19;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.empresa-link:hover {
  color: #4e3700;
  gap: 16px;
}

/* RESPONSIVO */
@media (max-width: 991.98px) {
  .empresa-hero {
    min-height: 560px;
  }
  .empresa-subtitulo {
    letter-spacing: 0.22rem;
    font-size: 0.72rem;
  }
  .empresa-selo {
    font-size: 1.05rem;
    padding: 12px 20px;
  }
  .empresa-texto,
  .empresa-texto p {
    font-size: 1rem;
    line-height: 1.8;
  }
}
@media (max-width: 767.98px) {
  .empresa-hero {
    min-height: 260px;
    background-size: contain;
    margin-bottom: -60px;
  }
  .empresa-titulo {
    font-size: 2.4rem;
  }
  .empresa-subtitulo {
    letter-spacing: 0.16rem;
    font-size: 0.68rem;
  }
  .empresa-card {
    padding: 30px 24px;
  }
}
.modelo-conteudo-html {
  color: #5c5045;
  font-size: 15.5px;
  line-height: 1.9;
}

.modelo-conteudo-html h2,
.modelo-conteudo-html h3,
.modelo-conteudo-html h4,
.modelo-conteudo-html h5,
.modelo-conteudo-html h6 {
  font-weight: 800;
  color: #2e251f;
  margin-top: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modelo-conteudo-html h2,
.modelo-conteudo-html h3 {
  font-size: 18px;
  position: relative;
  padding-left: 14px;
}

.modelo-conteudo-html h2::before,
.modelo-conteudo-html h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #d8af5a, #b8892f);
}

.modelo-conteudo-html p {
  margin-bottom: 18px;
}

.modelo-conteudo-html ul,
.modelo-conteudo-html ol {
  margin: 0 0 18px 0;
  padding-left: 0;
  list-style: none;
}

.modelo-conteudo-html ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #5f544a;
}

.modelo-conteudo-html ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b8892f;
  font-weight: 700;
}

.modelo-conteudo-html ol li {
  margin-bottom: 10px;
}

.modelo-conteudo-html strong {
  color: #2e251f;
  font-weight: 700;
}

.modelo-conteudo-html table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid #e9e1d7;
}

.modelo-conteudo-html table th,
.modelo-conteudo-html table td {
  padding: 12px 14px;
  border: 1px solid #e9e1d7;
  text-align: left;
}

.modelo-conteudo-html table th {
  background: #f8f5ef;
  font-weight: 700;
  color: #2e251f;
}

.modelo-conteudo-html img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* =========================================
   PÁGINA DE PRODUTO - SAMEC
   ========================================= */
.pagina-modelo,
.pagina-produto {
  font-family: "Google Sans", Arial, sans-serif;
  color: #2e251f;
  background: #f8f5ef;
}

/* =========================================
   SEÇÃO PRINCIPAL
   ========================================= */
.modelo-produto-section {
  padding: 64px 0 80px;
}

.modelo-topo {
  margin-bottom: 42px;
}

.modelo-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8892f;
  margin-bottom: 14px;
}

.modelo-titulo {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #2e251f;
  margin: 0 !important;
}

.modelo-descricao {
  font-size: 1.05rem;
  color: #7a6d61;
  margin-bottom: 10px;
}

.modelo-observacao {
  font-size: 14px;
  color: #7a6d61;
}

/* =========================================
   IMAGENS
   ========================================= */
.modelo-imagens {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modelo-image-box {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.modelo-image-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.modelo-image-box:hover img {
  transform: scale(1.04);
}

.modelo-main-image img {
  min-height: 420px;
  object-fit: cover;
}

.modelo-secondary-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.modelo-sem-imagem {
  min-height: 320px;
  background: #ffffff;
  border: 1px solid #e9e1d7;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: #7a6d61;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================
   CONTEÚDO HTML VINDO DO BANCO
   ========================================= */
.modelo-conteudo-html {
  color: #2e251f;
}

/* grid de medidas */
.modelo-conteudo-html .modelo-especificacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

/* cards de medidas */
.modelo-conteudo-html .modelo-spec-card {
  background: #ffffff;
  border: 1px solid #d8d1c8;
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modelo-conteudo-html .modelo-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #d8af5a;
}

.modelo-conteudo-html .modelo-spec-card h6 {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a7f61;
  font-weight: 700;
}

.modelo-conteudo-html .modelo-spec-card p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f1f1f;
}

/* blocos de informações */
.modelo-conteudo-html .modelo-info-bloco {
  margin-bottom: 28px;
}

.modelo-conteudo-html .modelo-info-titulo {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: #1f1f1f;
  position: relative;
  padding-left: 14px;
}

.modelo-conteudo-html .modelo-info-titulo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #d8af5a, #b8892f);
}

/* listas */
.modelo-conteudo-html .modelo-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modelo-conteudo-html .modelo-feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #5f544a;
  line-height: 1.55;
  font-size: 1rem;
}

.modelo-conteudo-html .modelo-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c68d1f;
  font-weight: 700;
}

/* textos comuns dentro do HTML do banco */
.modelo-conteudo-html p {
  color: #5c5045;
  line-height: 1.85;
  font-size: 15.5px;
  margin-bottom: 18px;
}

.modelo-conteudo-html h2,
.modelo-conteudo-html h3,
.modelo-conteudo-html h4,
.modelo-conteudo-html h5,
.modelo-conteudo-html h6 {
  color: #2e251f;
}

/* tabelas, caso venham do banco */
.modelo-conteudo-html table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #ffffff;
  border: 1px solid #e9e1d7;
}

.modelo-conteudo-html table th,
.modelo-conteudo-html table td {
  padding: 12px 14px;
  border: 1px solid #e9e1d7;
  text-align: left;
}

.modelo-conteudo-html table th {
  background: #f4efe7;
  font-weight: 700;
  color: #2e251f;
}

/* imagens internas do conteúdo HTML */
.modelo-conteudo-html img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* =========================================
   BLOCO DE CARACTERÍSTICAS
   ========================================= */
.modelo-caracteristicas {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid #e9e1d7;
}

.modelo-caracteristicas-texto {
  color: #5c5045;
  line-height: 1.9;
  font-size: 15.5px;
}

.modelo-caracteristicas-texto p {
  margin-bottom: 18px;
}

.modelo-caracteristicas-sem-borda {
  margin-bottom: 30px;
}

/* =========================================
   LEGENDA DE FOTO
   ========================================= */
.modelo-legenda-foto {
  padding: 10px 14px;
  font-size: 13px;
  color: #7a6d61;
  background: #ffffff;
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 991.98px) {
  .modelo-produto-section {
    padding: 48px 0 64px;
  }
  .modelo-conteudo-html .modelo-especificacoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modelo-main-image img {
    min-height: auto;
  }
}
@media (max-width: 575.98px) {
  .modelo-conteudo-html .modelo-especificacoes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .modelo-conteudo-html .modelo-spec-card {
    padding: 14px 10px;
    border-radius: 14px;
  }
  .modelo-conteudo-html .modelo-spec-card p {
    font-size: 1.05rem;
  }
  .modelo-titulo {
    font-size: 2.1rem;
  }
  .modelo-secondary-image img {
    height: 180px;
  }
}
/* ==========================
   POPUP
   ========================== */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9998;
  backdrop-filter: blur(3px);
}

.cxPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 760px);
  max-height: 88vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  padding: 0;
  animation: popupFadeUp 0.35s ease;
}

/* barra superior */
.cxPopup .caixaFechar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 22px 0 22px;
}

/* botão fechar */
.cxPopup .caixaFechar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.cxPopup .caixaFechar a:hover {
  background: #b8892f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* conteúdo */
.cxPopup .caixaConteudoPopup {
  padding: 10px 34px 34px 34px;
  text-align: center;
}

/* título */
.cxPopup .caixaConteudoPopup h1 {
  margin: 0 0 16px 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: #2e251f;
}

/* descrição */
.cxPopup .caixaConteudoPopup p {
  margin: 0 0 22px 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5f544a;
}

/* =========================================
   IMAGEM DESTACADA DO POPUP
   ========================================= */
.cxPopup .caixaConteudoPopup img {
  width: 100%;
  height: auto;
  display: block;
  margin: 28px auto 10px auto;
  border-radius: 18px;
  /* destaque visual */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  /* separação do conteúdo */
  border: 4px solid #ffffff;
  /* leve contraste */
  filter: contrast(1.02) brightness(1.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* efeito hover mais elegante */
.cxPopup .caixaConteudoPopup img:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/* scrollbar bonita */
.cxPopup::-webkit-scrollbar {
  width: 10px;
}

.cxPopup::-webkit-scrollbar-track {
  background: #f1ece4;
  border-radius: 10px;
}

.cxPopup::-webkit-scrollbar-thumb {
  background: #c7a15b;
  border-radius: 10px;
}

.cxPopup::-webkit-scrollbar-thumb:hover {
  background: #b8892f;
}

/* animação */
@keyframes popupFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* responsivo */
@media (max-width: 767.98px) {
  .cxPopup {
    width: calc(100% - 24px);
    max-height: 90vh;
    border-radius: 18px;
  }
  .cxPopup .caixaFechar {
    padding: 14px 14px 0 14px;
  }
  .cxPopup .caixaFechar a {
    min-width: 96px;
    height: 40px;
    font-size: 13px;
  }
  .cxPopup .caixaConteudoPopup {
    padding: 10px 18px 24px 18px;
  }
  .cxPopup .caixaConteudoPopup h1 {
    font-size: 1.6rem;
  }
  .cxPopup .caixaConteudoPopup p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}
.hero-section {
  padding: 90px 0 40px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  color: #5f5e5e;
  max-width: 820px;
  line-height: 1.8;
}

.hero-side {
  border-left: 1px solid #d1c5b4;
  padding-left: 1.5rem;
}

.hero-side small {
  display: block;
  color: #775a19;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-side strong {
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
}

.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 18px;
  min-height: 320px;
  background: #f0edec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  /* align-items: flex-end; */
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08));
  transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
}

.category-content h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.category-content p {
  color: #e9e9e9;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.45s ease;
}

.category-card:hover .category-content p {
  opacity: 1;
  transform: translateY(0);
}

.category-link {
  color: #ffdea5;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  bottom: 15px;
  position: absolute;
}

.category-link:hover {
  color: #fff;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  text-decoration: none;
  transition: 0.3s;
}

.social-icon:hover {
  color: #c5a059;
  border-color: #c5a059;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 50px;
  }
  .hero-side {
    border-left: 0;
    border-top: 1px solid #d1c5b4;
    padding-left: 0;
    padding-top: 1.2rem;
    margin-top: 1.5rem;
  }
  .category-card {
    min-height: 300px;
  }
}
/* =========================================
   PÁGINA DE CATEGORIA
   ========================================= */
.pagina-categoria {
  background: #fcf9f8;
  color: #1c1b1b;
  font-family: "Google Sans", Arial, sans-serif;
}

.categoria-breadcrumb {
  padding: 48px 0 20px;
}

.categoria-breadcrumb p {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: rgba(78, 70, 57, 0.65);
}

.categoria-breadcrumb a {
  color: rgba(78, 70, 57, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.categoria-breadcrumb a:hover {
  color: #775a19;
}

.categoria-breadcrumb span {
  margin: 0 6px;
}

.categoria-breadcrumb strong {
  color: #775a19;
  font-weight: 700;
}

.categoria-topo {
  padding: 0 0 70px;
}

.categoria-titulo {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.98;
  font-weight: 700;
  color: #1c1b1b;
  margin: 0 0 22px;
  letter-spacing: -0.04em;
}

.categoria-linha {
  width: 48px;
  height: 2px;
  background: #775a19;
  margin-bottom: 28px;
}

.categoria-descricao {
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.85;
  font-weight: 400;
  color: #5f5e5e;
  margin: 0;
}

.categoria-grid-section {
  padding: 0 0 90px;
}

.categoria-card-produto {
  display: block;
  text-decoration: none;
  color: inherit;
}

.categoria-card-imagem {
  position: relative;
  overflow: hidden;
  background: #f0edec;
  aspect-ratio: 8/5;
  border-radius: 22px;
}

.categoria-card-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

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

.categoria-card-info {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.categoria-card-info h2 {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1c1b1b;
  margin: 0 0 10px;
}

.categoria-card-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #775a19;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.categoria-card-info span {
  font-size: 0.7rem;
  color: rgba(78, 70, 57, 0.35);
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.categoria-editorial {
  background: #f6f3f2;
  padding: 80px 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.categoria-editorial h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 700;
  color: #1c1b1b;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.categoria-editorial p {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5f5e5e;
  margin: 0 0 34px;
}

.categoria-botao {
  display: inline-block;
  padding: 18px 34px;
  background: #775a19;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.74rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.categoria-botao:hover {
  background: #5d4201;
  color: #ffffff;
  transform: translateY(-2px);
}

.categoria-editorial-imagem {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ebe7e7;
}

.categoria-editorial-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(100%);
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 991.98px) {
  .categoria-breadcrumb {
    padding-top: 34px;
  }
  .categoria-topo {
    padding-bottom: 50px;
  }
  .categoria-grid-section {
    padding-bottom: 70px;
  }
  .categoria-editorial {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .categoria-breadcrumb p {
    font-size: 0.65rem;
    letter-spacing: 0.14rem;
  }
  .categoria-descricao {
    font-size: 1rem;
    line-height: 1.75;
  }
  .categoria-card-info {
    margin-top: 18px;
  }
  .categoria-card-info h2 {
    font-size: 1.1rem;
  }
  .categoria-editorial h3 {
    font-size: 2rem;
  }
  .categoria-editorial p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .categoria-botao {
    padding: 16px 24px;
    letter-spacing: 0.12rem;
  }
}
.modelo-observacao-dimensoes {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
  font-style: italic;
  letter-spacing: 0.3px;
}

.txtCorpo .social-icons a {
  color: #000;
  font-size: 25px;
  margin-right: 5px;
}

/*# sourceMappingURL=estilo.css.map */
