@font-face {
  font-family: "Poynter Display";
  src: url("../fonts/PoynterOSDisplay-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #070707;
  --black-soft: #111111;
  --gold: #c58b1f;
  --gold-soft: #c9a24d;
  --gold-light: #e6c878;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text: #151515;
  --gray: #666666;
}

/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

/* ============================= */
/* HEADER DESKTOP */
/* ============================= */

.site-header {
  width: 100%;
  height: 96px;
  background: var(--white);
  border-bottom: 2px solid var(--gold-soft);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-logo img {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* MENU DESKTOP */

.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.desktop-menu a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 10px 0;
  line-height: 1;
  text-shadow: 0 0.4px 0.4px rgba(0, 0, 0, 0.25);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.desktop-menu a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  border-radius: 20px;
  transition: width 0.25s ease;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: var(--gold);
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
  width: 34px;
}

/* BOTÃO WHATSAPP */

.header-whatsapp {
  background: var(--gold);
  color: var(--white);
  padding: 0 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  min-width: 178px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 8px 18px rgba(197, 139, 31, 0.28);
  border: 1px solid #a87416;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-whatsapp:hover {
  background: #b87f18;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(197, 139, 31, 0.34);
}

.whatsapp-symbol {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-symbol svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: var(--white);
}

/* BOTÃO MOBILE */

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.mobile-menu-button span {
  width: 28px;
  height: 3px;
  background: var(--black);
  border-radius: 20px;
}

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

.hero-banner {
  width: 100%;
  min-height: 500px;
  margin-top: 96px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 139, 31, 0.2);
  background-image: url("../imagens/banners/banner-scfashion.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(248, 245, 239, 0.88) 0%,
    rgba(248, 245, 239, 0.84) 12%,
    rgba(248, 245, 239, 0.72) 24%,
    rgba(248, 245, 239, 0.46) 30%,
    rgba(248, 245, 239, 0.18) 40%,
    rgba(248, 245, 239, 0) 55%
  );
}

.hero-content {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 58px 0 62px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 510px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-kicker span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b9851f;
  white-space: nowrap;
}

.hero-kicker i {
  width: 86px;
  height: 1.5px;
  background: var(--gold-soft);
  display: block;
  border-radius: 20px;
}

.hero-title {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.04;
  font-weight: 600;
  color: #070707;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 500px;
  -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.05);
}

.hero-title .title-line {
  display: block;
  color: #070707;
}

.hero-title .title-gold {
  color: var(--gold);
}

.hero-description {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.65;
  color: #3f3f3f;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-btn-primary {
  height: 46px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid #a87416;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(197, 139, 31, 0.22);
  transition: 0.25s ease;
}

.hero-btn-primary:hover {
  background: #b77e18;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(197, 139, 31, 0.28);
}

.hero-btn-primary span {
  font-size: 18px;
  line-height: 1;
}

/* ============================= */
/* FAIXA DE BENEFÍCIOS */
/* ============================= */

.hero-benefits {
  width: 100%;
  min-height: 112px;
  background: linear-gradient(135deg, #050505 0%, #111111 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201, 162, 77, 0.18);
  border-bottom: 1px solid rgba(201, 162, 77, 0.18);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 34px;
  color: var(--white);
  position: relative;
}

.benefit-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 58px;
  background: rgba(201, 162, 77, 0.34);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 185px;
}

/* ============================= */
/* TELAS GRANDES */
/* ============================= */

@media (min-width: 1400px) {
  .header-container,
  .hero-content {
    width: min(1240px, calc(100% - 80px));
  }

  .hero-banner {
    min-height: 540px;
  }
}

/* ============================= */
/* TABLET / NOTEBOOK MENOR */
/* ============================= */

@media (max-width: 1100px) {
  .header-logo img {
    width: 205px;
  }

  .desktop-menu {
    gap: 28px;
  }

  .header-whatsapp {
    min-width: 160px;
    padding: 0 18px;
  }

  .benefit-item {
    padding: 22px 22px;
  }

  .benefit-text h3 {
    font-size: 13px;
  }

  .benefit-text p {
    font-size: 11px;
  }
}

/* ============================= */
/* MOBILE E TABLET VERTICAL */
/* ============================= */

@media (max-width: 900px) {
  .site-header {
    height: 86px;
  }

  .header-container {
    width: calc(100% - 28px);
    height: 86px;
  }

  .desktop-menu,
  .header-whatsapp {
    display: none;
  }

  .header-logo {
    width: 150px;
    height: 62px;
    flex: 0 0 150px;
  }

  .header-logo img {
    width: 145px;
    max-width: 145px;
    max-height: 58px;
    height: auto;
    object-fit: contain;
    transform: translateX(10px);
  }

  .mobile-menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
  }

  .mobile-menu-button span {
    width: 27px;
    height: 2.5px;
  }

  .hero-banner {
    min-height: auto;
    margin-top: 86px;
    background-position: 74% center;
  }

  .hero-banner::before {
    background: linear-gradient(
      180deg,
      rgba(248, 245, 239, 0.92) 0%,
      rgba(248, 245, 239, 0.84) 28%,
      rgba(248, 245, 239, 0.52) 52%,
      rgba(248, 245, 239, 0.1) 72%,
      rgba(248, 245, 239, 0) 100%
    );
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 38px 0 42px;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-kicker {
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-kicker span {
    font-size: 11px;
    letter-spacing: 1.7px;
  }

  .hero-kicker i {
    width: 56px;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
  }

  .hero-description {
    max-width: 410px;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-btn-primary {
    width: 100%;
    max-width: 260px;
    font-size: 14px;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .benefit-item {
    padding: 20px 18px;
  }

  .benefit-item:not(:last-child)::after {
    display: none;
  }

  .benefit-text h3 {
    font-size: 13px;
  }

  .benefit-text p {
    font-size: 11px;
  }
}

/* ============================= */
/* CELULAR */
/* ============================= */

@media (max-width: 600px) {
  .site-header {
    height: 82px;
  }

  .header-container {
    height: 82px;
    width: calc(100% - 24px);
  }

  .header-logo {
    width: 142px;
    flex: 0 0 142px;
  }

  .header-logo img {
    width: 138px;
    max-width: 138px;
    transform: translateX(6px);
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-button span {
    width: 26px;
  }

  .hero-banner {
    margin-top: 82px;
    background-position: 68% center;
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 34px 0 34px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 0.98;
  }

  .hero-description {
    max-width: 310px;
    font-size: 12px;
  }

  .hero-btn-primary {
    max-width: 245px;
    height: 44px;
    font-size: 12px;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-item {
    padding: 18px 16px;
    gap: 12px;
  }

  .benefit-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .benefit-icon svg {
    width: 25px;
    height: 25px;
  }
}

/* ============================= */
/* CELULAR PEQUENO */
/* ============================= */

@media (max-width: 380px) {
  .header-logo {
    width: 132px;
    flex: 0 0 132px;
  }

  .header-logo img {
    width: 128px;
    max-width: 128px;
    transform: translateX(4px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-kicker span {
    font-size: 10px;
  }

  .hero-kicker i {
    width: 42px;
  }

  .hero-description {
    max-width: 280px;
    font-size: 11.5px;
  }
}

/* ============================= */
/* MENU LATERAL MOBILE */
/* ============================= */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1800;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-side-menu {
  width: min(82vw, 340px);
  height: 100vh;
  background: #ffffff;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1900;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.22);
  transition: right 0.32s ease;
}

.mobile-side-menu.active {
  right: 0;
}

.mobile-side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 162, 77, 0.22);
}

.mobile-side-header img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: #c58b1f;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.mobile-side-links {
  display: flex;
  flex-direction: column;
}

.mobile-side-links a {
  min-height: 74px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  color: #111111;
}

.side-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: #c58b1f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-side-links strong {
  font-size: 14px;
  font-weight: 500;
}

.mobile-side-links em {
  font-style: normal;
  font-size: 24px;
  color: #c58b1f;
  line-height: 1;
}

.mobile-side-whatsapp {
  margin-top: auto;
  height: 58px;
  background: #c58b1f;
  color: #ffffff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(197, 139, 31, 0.28);
}

.mobile-side-whatsapp .whatsapp-symbol svg {
  fill: #ffffff;
}

@media (min-width: 901px) {
  .mobile-menu-overlay,
  .mobile-side-menu {
    display: none;
  }
}

/* ============================= */
/* BANNER MOBILE COM IMAGEM PRÓPRIA */
/* ============================= */

@media (max-width: 600px) {
  .hero-banner {
    min-height: 620px;
    margin-top: 82px;
    align-items: flex-start;
    background-image: url("../imagens/banners/banner-mobile.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }

  .hero-banner::before {
    background: linear-gradient(
      180deg,
      rgba(248, 245, 239, 0.98) 0%,
      rgba(248, 245, 239, 0.96) 26%,
      rgba(248, 245, 239, 0.78) 42%,
      rgba(248, 245, 239, 0.22) 58%,
      rgba(248, 245, 239, 0.00) 76%
    );
  }

  .hero-content {
    width: calc(100% - 46px);
    padding: 38px 0 300px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-kicker {
    gap: 10px;
    margin-bottom: 17px;
  }

  .hero-kicker span {
    font-size: 10.5px;
    letter-spacing: 1.6px;
  }

  .hero-kicker i {
    width: 46px;
    height: 1px;
  }

  .hero-title {
    font-size: 39px;
    line-height: 1.02;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
    max-width: 340px;
  }

  .hero-description {
    max-width: 315px;
    font-size: 13px;
    line-height: 1.55;
    color: #333333;
    margin-bottom: 24px;
  }

  .hero-btn-primary {
    width: auto;
    min-width: 245px;
    max-width: none;
    height: 48px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 8px;
  }
}

@media (max-width: 380px) {
  .hero-banner {
    min-height: 590px;
    background-position: center bottom;
  }

  .hero-content {
    width: calc(100% - 38px);
    padding: 34px 0 275px;
  }

  .hero-title {
    font-size: 35px;
    max-width: 300px;
  }

  .hero-description {
    max-width: 280px;
    font-size: 12px;
  }

  .hero-btn-primary {
    min-width: 220px;
    height: 46px;
    font-size: 12px;
  }
}

/* ============================= */
/* FAIXA DE BENEFÍCIOS MOBILE - 4 JUNTOS */
/* ============================= */

@media (max-width: 600px) {
  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 126px;
    padding: 18px 10px 20px;
    background: linear-gradient(135deg, #050505 0%, #111111 100%);
    border-top: 1px solid rgba(201, 162, 77, 0.22);
    border-bottom: 1px solid rgba(201, 162, 77, 0.22);
  }

  .benefit-item {
    padding: 0 8px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: center;
    position: relative;
  }

  .benefit-item:not(:last-child)::after {
    display: block;
    content: "";
    width: 1px;
    height: 70px;
    background: rgba(201, 162, 77, 0.45);
    position: absolute;
    right: 0;
    top: 8px;
    transform: none;
  }

  .benefit-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    margin: 0 auto;
  }

  .benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: #c58b1f;
    stroke-width: 1.8;
  }

  .benefit-text h3 {
    font-size: 10.5px;
    line-height: 1.18;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
  }

  .benefit-text p {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-benefits {
    min-height: 118px;
    padding: 16px 8px 18px;
  }

  .benefit-item {
    padding: 0 6px;
    gap: 7px;
  }

  .benefit-icon {
    width: 31px;
    height: 31px;
    min-width: 31px;
  }

  .benefit-icon svg {
    width: 27px;
    height: 27px;
  }

  .benefit-text h3 {
    font-size: 9.5px;
  }

  .benefit-item:not(:last-child)::after {
    height: 64px;
  }
}

/* ============================= */
/* PÁGINA POLÍTICA DE PRIVACIDADE */
/* ============================= */

.privacy-page {
  padding-top: 96px;
  background: #fbfaf7;
}

.privacy-hero {
  min-height: 360px;
  background:
    radial-gradient(circle at 74% 20%, rgba(197, 139, 31, 0.13), transparent 32%),
    linear-gradient(90deg, #fbfaf7 0%, #ffffff 52%, #f5efe6 100%);
  border-bottom: 1px solid rgba(201, 162, 77, 0.18);
  overflow: hidden;
}

.privacy-hero-content {
  width: min(1180px, calc(100% - 80px));
  min-height: 360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.privacy-kicker {
  color: #b9851f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.privacy-copy h1 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 0.98;
  font-weight: 600;
  color: #070707;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
}

.privacy-copy h1 span {
  color: #c58b1f;
}

.privacy-line {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.privacy-line i {
  height: 1.5px;
  background: #c58b1f;
  display: block;
}

.privacy-line span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(197, 139, 31, 0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c58b1f;
}

.privacy-line svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #c58b1f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-copy h2 {
  font-size: 22px;
  line-height: 1.3;
  color: #111111;
  font-weight: 500;
  margin-bottom: 14px;
}

.privacy-copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
}

.privacy-hero-art {
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-hero-art::before {
  content: "";
  width: 390px;
  height: 250px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(236,224,204,0.72));
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transform: rotate(-7deg);
  position: absolute;
}

.privacy-hero-art::after {
  content: "";
  width: 430px;
  height: 300px;
  background:
    radial-gradient(circle at 30% 30%, rgba(197,139,31,0.16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.privacy-card-brand {
  width: 260px;
  height: 170px;
  background: #f6efe3;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 18px;
  transform: rotate(5deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.privacy-card-brand img {
  width: 200px;
  height: auto;
}

/* CONTEÚDO */

.privacy-content {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.section-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.section-title-line i {
  height: 1px;
  background: rgba(197, 139, 31, 0.55);
}

.section-title-line h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
}

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

.privacy-card {
  min-height: 190px;
  background: #ffffff;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 12px;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.035);
}

.privacy-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.privacy-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #c58b1f;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-card h3 {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.privacy-card h3::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #c58b1f;
  display: block;
  margin-top: 8px;
  border-radius: 20px;
}

.privacy-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #444444;
}

/* CTA */

.privacy-help {
  min-height: 130px;
  background: #ffffff;
  border: 1px solid rgba(197, 139, 31, 0.38);
  border-radius: 12px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: center;
}

.privacy-help-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f7efe2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-help-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #c58b1f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-help-text span {
  color: #c58b1f;
  font-size: 13px;
  font-weight: 700;
}

.privacy-help-text h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.1;
  margin: 6px 0 8px;
  color: #111111;
}

.privacy-help-text p {
  max-width: 520px;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

.privacy-whatsapp {
  height: 52px;
  padding: 0 28px;
  background: #c58b1f;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid #a87416;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(197, 139, 31, 0.25);
}

/* RESPONSIVO DA PÁGINA PRIVACIDADE */

@media (max-width: 1000px) {
  .privacy-hero-content,
  .privacy-content {
    width: calc(100% - 48px);
  }

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

  .privacy-copy h1 {
    font-size: 48px;
  }
}

@media (max-width: 700px) {
  .privacy-page {
    padding-top: 82px;
  }

  .privacy-hero {
    min-height: auto;
  }

  .privacy-hero-content {
    width: calc(100% - 32px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 40px 0 34px;
  }

  .privacy-hero-art {
    display: none;
  }

  .privacy-kicker {
    font-size: 11px;
    letter-spacing: 1.7px;
  }

  .privacy-copy h1 {
    font-size: 42px;
  }

  .privacy-copy h2 {
    font-size: 18px;
  }

  .privacy-copy p {
    font-size: 14px;
  }

  .privacy-content {
    width: calc(100% - 32px);
    padding: 34px 0 46px;
  }

  .section-title-line {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-title-line h2 {
    font-size: 21px;
    white-space: normal;
    text-align: center;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-card {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    padding: 22px 18px;
    gap: 14px;
  }

  .privacy-icon {
    width: 46px;
    height: 46px;
  }

  .privacy-icon svg {
    width: 42px;
    height: 42px;
  }

  .privacy-card h3 {
    font-size: 17px;
  }

  .privacy-card p {
    font-size: 13px;
  }

  .privacy-help {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 20px;
    gap: 16px;
  }

  .privacy-help-icon {
    margin: 0 auto;
  }

  .privacy-help-text p {
    margin: 0 auto;
  }

  .privacy-whatsapp {
    width: 100%;
  }
}

/* ============================= */
/* PÁGINA SOBRE NÓS */
/* ============================= */

.about-page {
  padding-top: 96px;
  background: #fbfaf7;
}

/* HERO */

/* HERO SOBRE */

.about-hero {
  min-height: 360px;
  margin-top: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(251, 250, 247, 0.98) 0%,
      rgba(251, 250, 247, 0.96) 28%,
      rgba(251, 250, 247, 0.78) 46%,
      rgba(251, 250, 247, 0.24) 66%,
      rgba(251, 250, 247, 0.00) 100%
    ),
    url("../imagens/banners/banner-sobre-nos.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(201, 162, 77, 0.18);
  overflow: hidden;
}

.about-hero-content {
  width: min(1180px, calc(100% - 80px));
  min-height: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.about-copy {
  max-width: 610px;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b9851f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-kicker i {
  width: 60px;
  height: 1.5px;
  background: #c58b1f;
  display: block;
}

.about-copy h1 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.06;
  font-weight: 600;
  color: #070707;
  letter-spacing: -1.1px;
  margin-bottom: 18px;
  max-width: 620px;
}

.about-copy h1 span {
  color: #c58b1f;
}

.about-copy p {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #444444;
}



/* INTRO */

.about-intro {
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
  padding: 36px 0 30px;
  text-align: center;
}

.about-intro-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.about-intro-line i {
  height: 1px;
  background: rgba(197, 139, 31, 0.55);
}

.about-intro-line span {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  color: #c58b1f;
  font-size: 26px;
}

.about-intro p {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.45;
  color: #222222;
}

.about-intro strong {
  color: #c58b1f;
  font-weight: 600;
}

/* CARDS PRINCIPAIS */

.about-main-cards {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 77, 0.24);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.035);
}

.about-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.about-card-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #c58b1f;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
}

.about-card h2::after {
  content: "";
  width: 34px;
  height: 2px;
  background: #c58b1f;
  display: block;
  margin-top: 10px;
  border-radius: 20px;
}

.about-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #444444;
  margin-top: 14px;
}

/* DIFERENCIAIS */

.about-differentials {
  width: min(1180px, calc(100% - 80px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201, 162, 77, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.about-differentials article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 24px 22px;
  border-right: 1px solid rgba(201, 162, 77, 0.18);
}

.about-differentials article:last-child {
  border-right: none;
}

.about-diff-icon {
  width: 50px;
  height: 50px;
}

.about-diff-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #c58b1f;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-differentials h3 {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.about-differentials p {
  font-size: 11.5px;
  line-height: 1.5;
  color: #555555;
}

/* FRASE FINAL */

.about-final {
  width: min(900px, calc(100% - 80px));
  margin: 34px auto 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.about-final i {
  height: 1px;
  background: rgba(197, 139, 31, 0.55);
}

.about-final p {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.65;
  color: #333333;
}

.about-final strong {
  color: #c58b1f;
  font-weight: 700;
}

/* RESPONSIVO SOBRE */

@media (max-width: 1000px) {
  .about-hero-content,
  .about-main-cards,
  .about-differentials {
    width: calc(100% - 48px);
  }

  .about-copy h1 {
    font-size: 48px;
  }

  .about-main-cards {
    grid-template-columns: 1fr;
  }

  .about-differentials {
    grid-template-columns: 1fr 1fr;
  }

  .about-differentials article:nth-child(2) {
    border-right: none;
  }

  .about-differentials article:nth-child(1),
  .about-differentials article:nth-child(2) {
    border-bottom: 1px solid rgba(201, 162, 77, 0.18);
  }
}

@media (max-width: 700px) {
  .about-page {
    padding-top: 82px;
  }

  .about-hero {
    min-height: 360px;
    background-image:
      linear-gradient(
        90deg,
        rgba(251, 250, 247, 0.98) 0%,
        rgba(251, 250, 247, 0.94) 42%,
        rgba(251, 250, 247, 0.55) 68%,
        rgba(251, 250, 247, 0.10) 100%
      ),
      url("../imagens/banners/banner-sobre-nos.png");
    background-size: cover;
    background-position: center right;
  }

  .about-hero-content {
    width: calc(100% - 32px);
    min-height: 360px;
    padding: 38px 0;
    display: flex;
    align-items: center;
  }

  

  .about-kicker {
    font-size: 11px;
    letter-spacing: 1.7px;
  }

  .about-copy h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .about-copy p {
    font-size: 13.5px;
    max-width: 310px;
  }

  .about-intro {
    width: calc(100% - 32px);
    padding: 28px 0 24px;
  }

  .about-intro p {
    font-size: 20px;
  }

  .about-main-cards,
  .about-differentials {
    width: calc(100% - 32px);
  }

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

  .about-card h2 {
    font-size: 25px;
  }

  .about-differentials {
    grid-template-columns: 1fr;
  }

  .about-differentials article {
    border-right: none;
    border-bottom: 1px solid rgba(201, 162, 77, 0.18);
  }

  .about-differentials article:last-child {
    border-bottom: none;
  }

  .about-final {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 48px;
  }

  .about-final p {
    font-size: 15px;
  }
}

/* ============================= */
/* MENU INFERIOR FIXO MOBILE */
/* ============================= */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 700px) {
  body {
    padding-bottom: 82px;
  }

  .mobile-bottom-nav {
    width: 100%;
    height: 78px;
    background: linear-gradient(135deg, #050505 0%, #101010 100%);
    border-top: 1px solid rgba(201, 162, 77, 0.35);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1600;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.25);
  }

  .mobile-bottom-nav a {
    height: 78px;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    font-size: 11px;
    font-weight: 500;
  }

  .mobile-bottom-nav a::before {
    content: "";
    width: 0;
    height: 3px;
    background: #c58b1f;
    border-radius: 20px;
    position: absolute;
    top: 0;
    transition: width 0.25s ease;
  }

  .mobile-bottom-nav a.active::before {
    width: 52px;
  }

  .mobile-bottom-nav span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-nav svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav strong {
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
  }

  .mobile-bottom-nav a.active {
    color: #c58b1f;
  }
}

/* ============================= */
/* PÁGINA CATEGORIA - DESKTOP */
/* ============================= */

.category-page {
  padding-top: 96px;
  background: #fbfaf7;
}

/* HERO CATEGORIA */

.category-hero {
  min-height: 420px;
  background-image: url("../imagens/categorias/banner-categoria.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(201, 162, 77, 0.22);
  position: relative;
  overflow: hidden;
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.36) 38%,
    rgba(0, 0, 0, 0.05) 76%
  );
  z-index: 1;
  pointer-events: none;
}



.category-hero-content {
  width: min(1180px, calc(100% - 80px));
  min-height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}


.category-copy {
  max-width: 500px;
}

.category-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #c58b1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.category-kicker::after {
  content: "";
  width: 72px;
  height: 1.5px;
  background: #c58b1f;
  display: block;
  border-radius: 20px;
}



.category-copy h1 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.category-copy h1 span {
  color: #c58b1f;
}



.category-copy p {
  max-width: 410px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;

}

.category-hero-button {
  height: 48px;
  padding: 0 24px;
  background: #c58b1f;
  color: #ffffff;
  border: 1px solid #a87416;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(197, 139, 31, 0.26);
  transition: 0.25s ease;
}

.category-hero-button:hover {
  background: #b77e18;
  transform: translateY(-2px);
}

.category-hero-button span {
  font-size: 16px;
  line-height: 1;
}


/* MOBILE - BANNER CATEGORIAS */

@media (max-width: 700px) {
  .category-page {
    padding-top: 82px;
  }

  .category-hero {
    min-height: 330px;
    background-image: url("../imagens/categorias/banner-categoria-mobile.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .category-hero::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.46) 48%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .category-hero-content {
    width: calc(100% - 32px);
    min-height: 330px;
  }

  .category-copy {
    max-width: 270px;
  }

  .category-kicker {
    font-size: 9px;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
    gap: 9px;
  }

  .category-kicker::after {
    width: 38px;
    height: 1px;
  }

  .category-copy h1 {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .category-copy p {
    max-width: 245px;
    font-size: 11.5px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .category-hero-button {
    height: 38px;
    padding: 0 15px;
    font-size: 11px;
    gap: 8px;
    border-radius: 7px;
  }
}
  


/* CELULAR PEQUENO*/

@media (max-width: 380px) {
  .category-hero {
    min-height: 310px;
  }

  .category-hero-content {
    min-height: 310px;
    width: calc(100% - 28px);
  }

  .category-copy h1 {
    font-size: 31px;
  }

  .category-copy p {
    font-size: 11px;
    max-width: 230px;
  }
}



/* ============================= */
/* PÁGINA DISTRIBUIDORES - BANNER */
/* ============================= */

.distributors-page {
  padding-top: 96px;
  background: #fbfaf7;
}

.distributors-hero {
  min-height: 430px;
  background-image: url("../imagens/banners/banner-distribuidores.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
  position: relative;
  overflow: hidden;
}

.distributors-hero-content {
  width: min(1180px, calc(100% - 80px));
  min-height: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.distributors-copy {
  max-width: 440px;
}

.distributors-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b9851f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.distributors-kicker::after {
  content: "";
  width: 72px;
  height: 1.5px;
  background: #c58b1f;
  display: block;
  border-radius: 20px;
}

.distributors-copy h1 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 0.98;
  font-weight: 600;
  color: #070707;
  letter-spacing: -1.1px;
  margin-bottom: 22px;
}

.distributors-copy h1 span {
  color: #c58b1f;
}

.distributors-copy p {
  max-width: 370px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #3f3f3f;
  margin-bottom: 26px;
}

.distributors-hero-button {
  height: 48px;
  padding: 0 24px;
  background: #c58b1f;
  color: #ffffff;
  border: 1px solid #a87416;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(197, 139, 31, 0.25);
  transition: 0.25s ease;
}

.distributors-hero-button:hover {
  background: #b77e18;
  transform: translateY(-2px);
}

.distributors-hero-button span {
  font-size: 18px;
  line-height: 1;
}

/* ============================= */
/* PÁGINA DISTRIBUIDORES - BANNER MOBILE */
/* ============================= */

@media (max-width: 700px) {
  .distributors-page {
    padding-top: 82px;
  }

  .distributors-hero {
    min-height: 300px;
    background-image: url("../imagens/banners/banner-distribuidores-mobile.png");
    background-size: cover;
    background-position: 38% center;
    background-repeat: no-repeat;
    position: relative;
  }

  .distributors-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(251, 250, 247, 0.98) 0%,
      rgba(251, 250, 247, 0.96) 20%,
      rgba(251, 250, 247, 0.82) 38%,
      rgba(251, 250, 247, 0.34) 48%,
      rgba(251, 250, 247, 0) 68%
    );
    pointer-events: none;
  }

  .distributors-hero-content {
    width: calc(100% - 38px);
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .distributors-copy {
    max-width: 210px;
  }

  .distributors-kicker {
    font-size: 8.5px;
    letter-spacing: 1.8px;
    margin-bottom: 9px;
    gap: 8px;
  }

  .distributors-kicker::after {
    width: 34px;
    height: 1px;
  }

  .distributors-copy h1 {
    font-size: 25px;
    line-height: 1.02;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }

  .distributors-copy p {
    max-width: 190px;
    font-size: 9.8px;
    line-height: 1.45;
    margin-bottom: 13px;
  }

  .distributors-hero-button {
    height: 34px;
    padding: 0 12px;
    font-size: 9.5px;
    gap: 7px;
    border-radius: 6px;
  }

  .distributors-hero-button span {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .distributors-hero {
    min-height: 285px;
    background-position: 64% center;
  }

  .distributors-hero-content {
    min-height: 285px;
    width: calc(100% - 24px);
  }

  .distributors-copy {
    max-width: 195px;
  }

  .distributors-copy h1 {
    font-size: 23px;
  }

  .distributors-copy p {
    max-width: 180px;
    font-size: 9.2px;
  }

  .distributors-hero-button {
    height: 32px;
    padding: 0 11px;
    font-size: 9px;
  }
}

/* ============================= */
/* PÁGINA DISTRIBUIDORES - BUSCA E FILTROS */
/* ============================= */

.distributors-tools {
  width: 100%;
  background: #fbfaf7;
  border-bottom: 1px solid rgba(201, 162, 77, 0.14);
}

.distributors-tools-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 34px 0 28px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: center;
}

.distributors-search {
  height: 48px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.025);
}

.distributors-search span {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777777;
}

.distributors-search svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.distributors-search input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #111111;
}

.distributors-search input::placeholder {
  color: #888888;
}

.distributors-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.distributors-filters::-webkit-scrollbar {
  display: none;
}

.distributors-filters button {
  height: 44px;
  padding: 0 22px;
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s ease;
}

.distributors-filters button:hover,
.distributors-filters button.active {
  background: #c58b1f;
  color: #ffffff;
  border-color: #a87416;
  box-shadow: 0 10px 22px rgba(197, 139, 31, 0.22);
}

/* MOBILE - BUSCA E FILTROS */

@media (max-width: 700px) {
  .distributors-tools-container {
    width: calc(100% - 32px);
    padding: 22px 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .distributors-search {
    height: 48px;
    border-radius: 12px;
    grid-template-columns: 46px 1fr;
  }

  .distributors-search span {
    width: 46px;
    height: 48px;
  }

  .distributors-search svg {
    width: 21px;
    height: 21px;
  }

  .distributors-search input {
    font-size: 13px;
  }

  .distributors-filters {
    width: 100%;
    gap: 10px;
    padding-bottom: 2px;
  }

  .distributors-filters button {
    height: 38px;
    padding: 0 17px;
    border-radius: 999px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .distributors-tools-container {
    width: calc(100% - 28px);
  }

  .distributors-filters button {
    height: 36px;
    padding: 0 15px;
    font-size: 11.5px;
  }
}

/* ============================= */
/* PÁGINA DISTRIBUIDORES - CARDS */
/* ============================= */

.distributors-list {
  width: 100%;
  background: #fbfaf7;
  padding: 28px 0 42px;
}

.distributors-list-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.distributor-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.055);
  transition: 0.25s ease;
}

.distributor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.09);
  border-color: rgba(197, 139, 31, 0.35);
}

.distributor-image {
  width: 100%;
  height: 155px;
  background: #f3f0ea;
  overflow: hidden;
}

.distributor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.distributor-info {
  padding: 20px 20px 18px;
}

.distributor-info h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
  margin-bottom: 5px;
}

.distributor-info span {
  display: inline-block;
  color: #c58b1f;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.distributor-info p {
  min-height: 64px;
  font-size: 13px;
  line-height: 1.55;
  color: #555555;
  margin-bottom: 18px;
}

.distributor-info a {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(197, 139, 31, 0.75);
  border-radius: 8px;
  color: #b17a18;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.distributor-info a strong {
  font-size: 18px;
  line-height: 1;
}

.distributor-info a:hover {
  background: #c58b1f;
  color: #ffffff;
  border-color: #a87416;
}

/* NOTEBOOK / TABLET */
@media (max-width: 1100px) {
  .distributors-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================= */
/* DISTRIBUIDORES - CARDS MOBILE PREMIUM */
/* ============================= */

@media (max-width: 700px) {
  .distributors-list {
    padding: 18px 0 34px;
    background: #fbfaf7;
  }

  .distributors-list-container {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .distributor-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.065);
  }

  .distributor-card:hover {
    transform: none;
  }

  .distributor-image {
    height: 150px;
    background: #f4f0ea;
  }

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

  .distributor-info {
    padding: 17px 18px 17px;
  }

  .distributor-info h2 {
    font-family: "Poynter Display", Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.08;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
  }

  .distributor-info span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c58b1f;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 9px;
  }

  .distributor-info span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #c58b1f;
    border-radius: 50%;
    display: inline-block;
  }

  .distributor-info p {
    min-height: auto;
    font-size: 12.5px;
    line-height: 1.55;
    color: #555555;
    margin-bottom: 15px;
  }

  .distributor-info a {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: #b17a18;
    padding: 0;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .distributor-info a:hover {
    background: transparent;
    color: #8f6112;
  }

  .distributor-info a strong {
    font-size: 19px;
  }
}

@media (max-width: 380px) {
  .distributors-list-container {
    width: calc(100% - 28px);
    gap: 16px;
  }

  .distributor-image {
    height: 138px;
  }

  .distributor-info {
    padding: 16px 16px 16px;
  }

  .distributor-info h2 {
    font-size: 23px;
  }

  .distributor-info p {
    font-size: 12px;
  }

  .distributor-info a {
    font-size: 13px;
  }

}


 
/* ============================= */
/* PÁGINA DISTRIBUIDORES - FAIXA PRETA */
/* ============================= */

.distributors-benefits {
  width: 100%;
  background: #fbfaf7;
  padding: 8px 0 42px;
}

.distributors-benefits-container {
  width: min(1180px, calc(100% - 80px));
  min-height: 128px;
  margin: 0 auto;
  padding: 28px 34px;
  background: linear-gradient(135deg, #050505 0%, #121212 100%);
  border: 1px solid rgba(201, 162, 77, 0.32);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 34px;
  align-items: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.benefits-main {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
}

.benefits-main-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(201, 162, 77, 0.75);
  border-radius: 50%;
  color: #c58b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-main-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-main h2 {
  max-width: 570px;
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 600;
  color: #ffffff;
}

.benefits-main h2 span {
  color: #c58b1f;
}

.benefits-items {
  min-height: 80px;
  padding-left: 30px;
  border-left: 1px solid rgba(201, 162, 77, 0.55);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}

.benefits-items article {
  color: #ffffff;
  text-align: center;
}

.benefits-items article div {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  color: #c58b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-items svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-items p {
  max-width: 110px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

/* MOBILE - FAIXA PRETA */

@media (max-width: 700px) {
  .distributors-benefits {
    padding: 4px 0 28px;
  }

  .distributors-benefits-container {
    width: calc(100% - 32px);
    padding: 22px 20px;
    border-radius: 14px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-main {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .benefits-main-icon {
    width: 54px;
    height: 54px;
  }

  .benefits-main-icon svg {
    width: 29px;
    height: 29px;
  }

  .benefits-main h2 {
    font-size: 22px;
    line-height: 1.22;
  }

  .benefits-items {
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid rgba(201, 162, 77, 0.42);
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .benefits-items article div {
    width: 30px;
    height: 30px;
    margin-bottom: 7px;
  }

  .benefits-items svg {
    width: 27px;
    height: 27px;
  }

  .benefits-items p {
    max-width: 90px;
    font-size: 10.5px;
    line-height: 1.28;
  }
}

@media (max-width: 380px) {
  .distributors-benefits-container {
    width: calc(100% - 28px);
    padding: 20px 17px;
  }

  .benefits-main h2 {
    font-size: 20px;
  }

  .benefits-items p {
    font-size: 10px;
  }
}

/* ============================= */
/* PÁGINA DISTRIBUIDORES - CTA FINAL */
/* ============================= */

.distributors-final-cta {
  width: 100%;
  background: #fbfaf7;
  padding: 0 0 58px;
}

.distributors-final-cta-container {
  width: min(1180px, calc(100% - 80px));
  min-height: 126px;
  margin: 0 auto;
  padding: 28px 36px;
  background:
    radial-gradient(circle at 86% 50%, rgba(197, 139, 31, 0.13), transparent 26%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 58%, #f3eadb 100%);
  border: 1px solid rgba(201, 162, 77, 0.24);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr auto 120px;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
}

.final-cta-text {
  position: relative;
  z-index: 2;
}

.final-cta-text h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 600;
  color: #111111;
  margin-bottom: 9px;
}

.final-cta-text h2 span {
  color: #c58b1f;
}

.final-cta-text p {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b4b4b;
}

.final-cta-button {
  height: 48px;
  min-width: 210px;
  padding: 0 24px;
  background: #c58b1f;
  color: #ffffff;
  border: 1px solid #a87416;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 24px rgba(197, 139, 31, 0.25);
  transition: 0.25s ease;
}

.final-cta-button:hover {
  background: #b77e18;
  transform: translateY(-2px);
}

.final-cta-button span {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.final-cta-mark {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 82px;
  line-height: 1;
  font-weight: 600;
  color: rgba(197, 139, 31, 0.45);
  text-align: right;
  position: relative;
  z-index: 1;
}

/* MOBILE - CTA FINAL */

@media (max-width: 700px) {
  .distributors-final-cta {
    padding: 0 0 110px;
  }

  .distributors-final-cta-container {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 14px;
  }

  .final-cta-text h2 {
    font-size: 27px;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .final-cta-text p {
    max-width: 280px;
    font-size: 12.8px;
    line-height: 1.55;
  }

  .final-cta-button {
    width: 100%;
    min-width: 0;
    height: 46px;
    font-size: 13px;
  }

  .final-cta-mark {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-size: 76px;
    opacity: 0.38;
  }
}

@media (max-width: 380px) {
  .distributors-final-cta-container {
    width: calc(100% - 28px);
    padding: 22px 18px;
  }

  .final-cta-text h2 {
    font-size: 25px;
  }

  .final-cta-text p {
    font-size: 12.3px;
  }
}

/* ============================= */
/* PÁGINA CATEGORIAS - CARDS COM IMAGENS */
/* ============================= */

.categories-section {
  width: 100%;
  background: #fbfaf7;
  padding: 54px 0 38px;
}

.categories-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.categories-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.categories-heading span {
  display: inline-flex;
  color: #c58b1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.categories-heading h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}

.categories-heading h2 strong {
  color: #c58b1f;
  font-weight: 600;
}

.categories-heading p {
  max-width: 590px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #555555;
}

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

.category-image-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.055);
  transition: 0.25s ease;
}

.category-image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 139, 31, 0.42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.09);
}

.category-image-card a {
  color: inherit;
  display: block;
  height: 100%;
}

.category-image-box {
  width: 100%;
  height: 185px;
  background: #f4eee4;
  overflow: hidden;
  position: relative;
}

.category-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: 0.35s ease;
}

.category-image-card:hover .category-image-box img {
  transform: scale(1.045);
}

.category-image-content {
  min-height: 220px;
  padding: 24px 24px 22px;
  position: relative;
}

.category-image-content::before {
  content: "";
  width: 44px;
  height: 3px;
  background: #c58b1f;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 24px;
}

.category-image-content span {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  color: rgba(197, 139, 31, 0.35);
  display: block;
  margin-bottom: 14px;
}

.category-image-content h3 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}

.category-image-content p {
  min-height: 70px;
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 18px;
}

.category-image-content strong {
  color: #b17a18;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.category-image-card:hover .category-image-content strong {
  color: #8f6112;
  transform: translateX(3px);
}

/* TABLET - CATEGORIAS COM IMAGENS */

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

  .category-image-box {
    height: 200px;
  }
}

/* MOBILE - CATEGORIAS COM IMAGENS */

@media (max-width: 700px) {
  .categories-section {
    padding: 36px 0 28px;
  }

  .categories-container {
    width: calc(100% - 32px);
  }

  .categories-heading {
    margin-bottom: 24px;
  }

  .categories-heading span {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 10px;
  }

  .categories-heading h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 11px;
  }

  .categories-heading p {
    font-size: 12.8px;
    line-height: 1.62;
  }

  .categories-image-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-image-card {
    border-radius: 14px;
  }

  .category-image-box {
    height: 165px;
  }

  .category-image-content {
    min-height: auto;
    padding: 21px 18px 18px;
  }

  .category-image-content::before {
    width: 36px;
    height: 2px;
    left: 18px;
  }

  .category-image-content span {
    font-size: 34px;
    margin-bottom: 11px;
  }

  .category-image-content h3 {
    font-size: 24px;
    margin-bottom: 9px;
  }

  .category-image-content p {
    min-height: auto;
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .category-image-content strong {
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  .categories-container {
    width: calc(100% - 28px);
  }

  .category-image-box {
    height: 150px;
  }

  .category-image-content h3 {
    font-size: 22px;
  }

  .category-image-content p {
    font-size: 12px;
  }
}

/* ============================= */
/* PÁGINA CATEGORIAS - CTA WHATSAPP */
/* ============================= */

.categories-whatsapp-cta {
  width: 100%;
  background: #fbfaf7;
  padding: 10px 0 70px;
}

.categories-whatsapp-container {
  width: min(1180px, calc(100% - 80px));
  min-height: 170px;
  margin: 0 auto;
  padding: 34px 38px;
  background:
    radial-gradient(circle at 88% 22%, rgba(197, 139, 31, 0.24), transparent 28%),
    linear-gradient(135deg, #060606 0%, #151515 100%);
  border: 1px solid rgba(201, 162, 77, 0.34);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.categories-whatsapp-container::after {
  content: "SC";
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
  font-weight: 600;
  color: rgba(197, 139, 31, 0.16);
  position: absolute;
  right: 34px;
  bottom: -18px;
  pointer-events: none;
}

.categories-whatsapp-text {
  position: relative;
  z-index: 2;
}

.categories-whatsapp-text span {
  color: #c58b1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  margin-bottom: 12px;
}

.categories-whatsapp-text h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  max-width: 560px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.categories-whatsapp-text h2 strong {
  color: #c58b1f;
  font-weight: 600;
}

.categories-whatsapp-text p {
  max-width: 570px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.categories-whatsapp-button {
  height: 44px;
  min-width: 178px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid #a87416;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(197, 139, 31, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.categories-whatsapp-button:hover {
  background: #b87f18;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(197, 139, 31, 0.34);
}

/* TABLET */

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

/* MOBILE */

@media (max-width: 700px) {
  .categories-section {
    padding: 36px 0 24px;
  }

  .categories-container {
    width: calc(100% - 32px);
  }

  .categories-heading {
    margin-bottom: 24px;
  }

  .categories-heading span {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 10px;
  }

  .categories-heading h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 11px;
  }

  .categories-heading p {
    font-size: 12.8px;
    line-height: 1.62;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .category-card {
    min-height: 210px;
    border-radius: 13px;
  }

  .category-card a {
    min-height: 210px;
    padding: 22px 16px 17px;
  }

  .category-card a::before {
    width: 34px;
    height: 2px;
    left: 16px;
  }

  .category-number {
    font-size: 34px;
    margin-bottom: 13px;
  }

  .category-card h3 {
    font-size: 20px;
    line-height: 1.08;
    margin-bottom: 9px;
  }

  .category-card p {
    font-size: 11.5px;
    line-height: 1.48;
    margin-bottom: 13px;
  }

  .category-card strong {
    font-size: 11.5px;
  }

  .categories-whatsapp-cta {
    padding: 8px 0 112px;
  }

  .categories-whatsapp-container {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 26px 20px;
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 15px;
  }

  .categories-whatsapp-container::after {
    font-size: 82px;
    right: 18px;
    bottom: -10px;
  }

  .categories-whatsapp-text span {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 10px;
  }

  .categories-whatsapp-text h2 {
    font-size: 29px;
    line-height: 1.12;
  }

  .categories-whatsapp-text p {
    max-width: 280px;
    font-size: 12.8px;
    line-height: 1.6;
  }

  .categories-whatsapp-button {
  width: 100%;
  min-width: 0;
  height: 47px;
  font-size: 13px;
}
}

@media (max-width: 380px) {
  .categories-container,
  .categories-whatsapp-container {
    width: calc(100% - 28px);
  }

  .categories-grid {
    gap: 12px;
  }

  .category-card {
    min-height: 205px;
  }

  .category-card a {
    padding: 20px 14px 16px;
  }

  .category-number {
    font-size: 31px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .category-card p {
    font-size: 11px;
  }

  .category-card strong {
    font-size: 11px;
  }

  .categories-whatsapp-text h2 {
    font-size: 27px;
  }
}

/* ============================= */
/* HOME - TUTORIAL RÁPIDO */
/* ============================= */

.home-tutorial {
  width: 100%;
  background: #fbfaf7;
  padding: 58px 0 64px;
}

.home-tutorial-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.home-tutorial-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.home-tutorial-heading span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #c58b1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-tutorial-heading span::before,
.home-tutorial-heading span::after {
  content: "";
  width: 58px;
  height: 1.5px;
  background: #c58b1f;
  display: block;
  border-radius: 20px;
}

.home-tutorial-heading h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}

.home-tutorial-heading p {
  max-width: 570px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.7;
  color: #555555;
}

.home-tutorial-steps {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  gap: 18px;
  align-items: center;
}

.tutorial-step-card {
  min-height: 230px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  padding: 28px 26px 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.tutorial-step-card::before {
  content: "";
  width: 42px;
  height: 3px;
  background: #c58b1f;
  border-radius: 20px;
  position: absolute;
  left: 26px;
  top: 0;
}

.tutorial-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 139, 31, 0.45);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

.tutorial-step-number {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  color: rgba(197, 139, 31, 0.38);
  display: block;
  margin-bottom: 16px;
}

.tutorial-step-icon {
  width: 58px;
  height: 58px;
  background: #f8efe0;
  border: 1px solid rgba(201, 162, 77, 0.26);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c58b1f;
  position: absolute;
  top: 26px;
  right: 24px;
}

.tutorial-step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tutorial-step-card h3 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}

.tutorial-step-card p {
  max-width: 245px;
  font-size: 13px;
  line-height: 1.62;
  color: #555555;
}

.tutorial-step-arrow {
  color: #c58b1f;
  font-size: 34px;
  font-weight: 300;
  text-align: center;
}

/* TABLET */

@media (max-width: 1000px) {
  .home-tutorial-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tutorial-step-arrow {
    transform: rotate(90deg);
    font-size: 26px;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .home-tutorial {
    padding: 42px 0 44px;
  }

  .home-tutorial-container {
    width: calc(100% - 32px);
  }

  .home-tutorial-heading {
    text-align: left;
    margin-bottom: 24px;
  }

  .home-tutorial-heading span {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 10px;
  }

  .home-tutorial-heading span::before {
    display: none;
  }

  .home-tutorial-heading span::after {
    width: 42px;
  }

  .home-tutorial-heading h2 {
    font-size: 31px;
    line-height: 1.12;
    margin-bottom: 11px;
  }

  .home-tutorial-heading p {
    font-size: 12.8px;
    line-height: 1.62;
    margin: 0;
  }

  .home-tutorial-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tutorial-step-card {
    min-height: auto;
    padding: 22px 18px 20px;
    border-radius: 13px;
  }

  .tutorial-step-card::before {
    left: 18px;
    width: 34px;
    height: 2px;
  }

  .tutorial-step-number {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .tutorial-step-icon {
    width: 46px;
    height: 46px;
    top: 20px;
    right: 18px;
  }

  .tutorial-step-icon svg {
    width: 23px;
    height: 23px;
  }

  .tutorial-step-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .tutorial-step-card p {
    max-width: 260px;
    font-size: 12.3px;
    line-height: 1.55;
  }

  .tutorial-step-arrow {
    font-size: 22px;
    transform: rotate(90deg);
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .home-tutorial-container {
    width: calc(100% - 28px);
  }

  .home-tutorial-heading h2 {
    font-size: 29px;
  }

  .tutorial-step-card h3 {
    font-size: 20px;
  }

  .tutorial-step-card p {
    font-size: 12px;
  }
}

.tutorial-whatsapp-icon svg {
  fill: currentColor;
  stroke: none;
}

/* ============================= */
/* HOME - CATEGORIAS EM DESTAQUE COM IMAGENS */
/* ============================= */

.home-categories {
  width: 100%;
  background: #fbfaf7;
  padding: 18px 0 64px;
}

.home-categories-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.home-section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.home-section-header span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c58b1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-section-header span::before {
  content: "";
  width: 52px;
  height: 1.5px;
  background: #c58b1f;
  display: block;
  border-radius: 20px;
}

.home-section-header h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  max-width: 620px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.7px;
  margin-bottom: 12px;
}

.home-section-header p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
}

.home-section-link {
  color: #b17a18;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 139, 31, 0.55);
  transition: 0.25s ease;
}

.home-section-link strong {
  font-size: 18px;
  line-height: 1;
}

.home-section-link:hover {
  color: #8f6112;
  transform: translateX(3px);
}

.home-categories-image-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.home-category-image-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
  transition: 0.25s ease;
}

.home-category-image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 139, 31, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.home-category-image-card a {
  color: inherit;
  display: block;
  min-height: 100%;
}

.home-category-image {
  width: 100%;
  height: 128px;
  background: #f4eee4;
  overflow: hidden;
  position: relative;
}

.home-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.35s ease;
}

.home-category-image-card:hover .home-category-image img {
  transform: scale(1.04);
}

.home-category-content {
  min-height: 92px;
  padding: 18px 12px 14px;
  text-align: center;
  position: relative;
}

.home-category-content::before {
  content: "";
  width: 42px;
  height: 42px;
  background: #fff9ef;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.home-category-content::after {
  content: "→";
  width: 42px;
  height: 42px;
  color: #c58b1f;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-category-content h3 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.05;
  font-weight: 600;
  color: #111111;
  margin-top: 8px;
  margin-bottom: 7px;
}

.home-category-content span {
  color: #b17a18;
  font-size: 11px;
  font-weight: 700;
}

/* TABLET - CATEGORIAS COM IMAGENS */

@media (max-width: 1180px) {
  .home-categories-image-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-category-image {
    height: 150px;
  }
}

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

  .home-section-link {
    width: fit-content;
  }

  .home-categories-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE - CATEGORIAS COM IMAGENS */

@media (max-width: 700px) {
  .home-categories {
    padding: 10px 0 44px;
  }

  .home-categories-container {
    width: calc(100% - 32px);
  }

  .home-section-header {
    margin-bottom: 22px;
  }

  .home-section-header span {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 10px;
  }

  .home-section-header span::before {
    width: 38px;
  }

  .home-section-header h2 {
    font-size: 31px;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .home-section-header p {
    font-size: 12.8px;
    line-height: 1.62;
  }

  .home-section-link {
    font-size: 12px;
    padding-bottom: 6px;
  }

  .home-categories-image-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 2px 0 12px;
    scrollbar-width: none;
  }

  .home-categories-image-grid::-webkit-scrollbar {
    display: none;
  }

  .home-category-image-card {
    min-width: 168px;
    max-width: 168px;
    flex: 0 0 168px;
    scroll-snap-align: start;
  }

  .home-category-image {
    height: 138px;
  }

  .home-category-content {
    min-height: 82px;
    padding: 17px 10px 12px;
  }

  .home-category-content::before,
  .home-category-content::after {
    width: 38px;
    height: 38px;
    top: -20px;
  }

  .home-category-content h3 {
    font-size: 18px;
    margin-top: 7px;
    margin-bottom: 5px;
  }

  .home-category-content span {
    font-size: 10.5px;
  }
}

@media (max-width: 380px) {
  .home-categories-container {
    width: calc(100% - 28px);
  }

  .home-categories-image-grid {
    gap: 11px;
  }

  .home-category-image-card {
  min-width: 158px;
  max-width: 158px;
  flex-basis: 158px;
}

  .home-category-image {
    height: 120px;
  }

  .home-category-content h3 {
    font-size: 17px;
  }

  .home-category-content span {
    font-size: 10px;
  }
}

/* ============================= */
/* HOME - DISTRIBUIDORES EM DESTAQUE */
/* ============================= */

.home-distributors {
  width: 100%;
  background: #fbfaf7;
  padding: 10px 0 66px;
}

.home-distributors-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.home-distributors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.home-distributor-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
  transition: 0.25s ease;
}

.home-distributor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 139, 31, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.home-distributor-card a {
  color: inherit;
  display: block;
  height: 100%;
}

.home-distributor-image {
  width: 100%;
  height: 118px;
  background: #111111;
  overflow: hidden;
}

.home-distributor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.35s ease;
}

.home-distributor-card:hover .home-distributor-image img {
  transform: scale(1.04);
}

.home-distributor-content {
  min-height: 165px;
  padding: 17px 16px 15px;
  display: flex;
  flex-direction: column;
}

.home-distributor-content h3 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 600;
  color: #111111;
  margin-bottom: 5px;
}

.home-distributor-content span {
  color: #c58b1f;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-distributor-content p {
  font-size: 11.8px;
  line-height: 1.52;
  color: #555555;
  margin-bottom: 14px;
  flex: 1;
}

.home-distributor-content strong {
  color: #b17a18;
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
  transition: 0.25s ease;
}

.home-distributor-card:hover .home-distributor-content strong {
  color: #8f6112;
  transform: translateX(3px);
}

/* TABLET - DISTRIBUIDORES HOME */

@media (max-width: 1180px) {
  .home-distributors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-distributor-image {
    height: 138px;
  }
}

@media (max-width: 900px) {
  .home-distributors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE - DISTRIBUIDORES HOME */

@media (max-width: 700px) {
  .home-distributors {
    padding: 6px 0 46px;
  }

  .home-distributors-container {
    width: calc(100% - 32px);
  }

  .home-distributors-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 2px 0 12px;
    scrollbar-width: none;
  }

  .home-distributors-grid::-webkit-scrollbar {
    display: none;
  }

  .home-distributor-card {
    min-width: 210px;
    max-width: 210px;
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .home-distributor-image {
    height: 118px;
  }

  .home-distributor-content {
    min-height: 148px;
    padding: 15px 14px 14px;
  }

  .home-distributor-content h3 {
    font-size: 21px;
  }

  .home-distributor-content span {
    font-size: 11.5px;
    margin-bottom: 8px;
  }

  .home-distributor-content p {
    font-size: 11.3px;
    line-height: 1.5;
  }

  .home-distributor-content strong {
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  .home-distributors-container {
    width: calc(100% - 28px);
  }

  .home-distributor-card {
    min-width: 198px;
    max-width: 198px;
    flex-basis: 198px;
  }

  .home-distributor-image {
    height: 108px;
  }

  .home-distributor-content h3 {
    font-size: 20px;
  }
}

/* ============================= */
/* HOME - FAIXA PRETA COMERCIAL */
/* ============================= */

.home-black-strip {
  width: 100%;
  background: #fbfaf7;
  padding: 4px 0 0;
}

.home-black-strip-container {
  width: 100%;
  min-height: 112px;
  background:
    radial-gradient(circle at left center, rgba(197, 139, 31, 0.12), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111111 100%);
  border-top: 1px solid rgba(201, 162, 77, 0.28);
  border-bottom: 1px solid rgba(201, 162, 77, 0.28);
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  align-items: center;
  gap: 34px;
  padding: 0 max(40px, calc((100vw - 1180px) / 2));
  position: relative;
  overflow: hidden;
}

.home-black-strip-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 34%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 8px
    );
  opacity: 0.42;
  pointer-events: none;
}

.home-black-strip-intro {
  position: relative;
  z-index: 2;
  padding-left: 8px;
}

.home-black-strip-intro h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  max-width: 330px;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin-bottom: 7px;
}

.home-black-strip-intro h2 span {
  color: #c58b1f;
}

.home-black-strip-intro p {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.home-black-strip-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 28px;
}

.home-black-strip-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
}

.home-black-strip-icon {
  width: 56px;
  height: 56px;
  color: #c58b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-black-strip-icon svg {
  width: 40px;
  height: 40px;
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-black-strip-icon svg path {
  fill: none !important;
  stroke: currentColor;
}

.home-black-strip-text strong {
  display: block;
  max-width: 140px;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 700;
  color: #ffffff;
}

.home-black-strip-divider {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.24);
}

/* TABLET - FAIXA PRETA */

@media (max-width: 1000px) {
  .home-black-strip-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 40px;
  }

  .home-black-strip-intro {
    padding-left: 0;
  }

  .home-black-strip-intro h2 {
    max-width: 620px;
  }

  .home-black-strip-items {
    width: 100%;
  }
}

/* MOBILE - FAIXA PRETA */

@media (max-width: 700px) {
  .home-black-strip {
    padding: 0;
  }

  .home-black-strip-container {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .home-black-strip-intro h2 {
    max-width: 280px;
    font-size: 24px;
    margin-bottom: 7px;
  }

  .home-black-strip-intro p {
    font-size: 12px;
  }

  .home-black-strip-items {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .home-black-strip-divider {
    display: none;
  }

  .home-black-strip-item {
    min-height: 62px;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 12px 13px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(201, 162, 77, 0.20);
    border-radius: 11px;
  }

  .home-black-strip-icon {
    width: 46px;
    height: 46px;
  }

  .home-black-strip-icon svg {
    width: 33px;
    height: 33px;
  }

  .home-black-strip-text strong {
    max-width: 100%;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .home-black-strip-container {
    padding: 22px 18px;
  }

  .home-black-strip-intro h2 {
    font-size: 22px;
  }

  .home-black-strip-item {
    grid-template-columns: 42px 1fr;
  }

  .home-black-strip-icon {
    width: 42px;
    height: 42px;
  }

  .home-black-strip-icon svg {
    width: 31px;
    height: 31px;
  }
}

/* ============================= */
/* HOME - CTA WHATSAPP COM BANNER */
/* ============================= */

.home-whatsapp-cta {
  width: 100%;
  background: #fbfaf7;
  padding: 18px 0 0;
}

.home-whatsapp-cta-container {
  width: 100%;
  margin: 0;
  padding: 0 max(40px, calc((100vw - 1180px) / 2));
  position: relative;
  aspect-ratio: 989 / 221;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}


.home-whatsapp-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-whatsapp-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-whatsapp-cta-content,
.home-whatsapp-cta-button {
  position: relative;
  z-index: 2;
}

.home-whatsapp-cta-content {
  grid-column: 2;
  max-width: 560px;
}

.home-whatsapp-cta-content h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.home-whatsapp-cta-content h2 span {
  color: #c58b1f;
}

.home-whatsapp-cta-content p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.55;
  color: #444444;
}

.home-whatsapp-cta-button {
  grid-column: 3;
  min-width: 190px;
  height: 48px;
  padding: 0 22px;
  background: #c58b1f;
  color: #ffffff;
  border: 1px solid #a87416;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(197, 139, 31, 0.26);
  transition: 0.25s ease;
}

.home-whatsapp-cta-button:hover {
  background: #b87f18;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(197, 139, 31, 0.32);
}

.home-whatsapp-cta-button .whatsapp-symbol {
  width: 18px;
  height: 18px;
}

.home-whatsapp-cta-button .whatsapp-symbol svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* TABLET */

@media (max-width: 1100px) {
  .home-whatsapp-cta-container {
    width: 100%;
    padding: 0 30px;
    grid-template-columns: 260px 1fr auto;
    gap: 24px;
  }
}

  .home-whatsapp-cta-content h2 {
    font-size: 28px;
  }


@media (max-width: 900px) {
  .home-whatsapp-cta-container {
    width: calc(100% - 40px);
    aspect-ratio: auto;
    min-height: 230px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }

  .home-whatsapp-cta-bg img {
    object-fit: cover;
    object-position: left center;
  }

  .home-whatsapp-cta-content {
    grid-column: auto;
    max-width: 420px;
  }

  .home-whatsapp-cta-button {
    grid-column: auto;
    width: fit-content;
  }
}

/* MOBILE */

/* MOBILE - CTA WHATSAPP */

@media (max-width: 700px) {
  .home-whatsapp-cta {
    padding: 14px 0 0;
    background: #fbfaf7;
  }

  .home-whatsapp-cta-container {
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(197, 139, 31, 0.22);
  border-bottom: 1px solid rgba(197, 139, 31, 0.22);
  border-left: none;
  border-right: none;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
  box-shadow: none;
}

  .home-whatsapp-cta-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 145px;
    z-index: 1;
  }

  .home-whatsapp-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
  }

  .home-whatsapp-cta-content {
    max-width: 100%;
    padding: 22px 18px 0;
    position: relative;
    z-index: 2;
  }

  .home-whatsapp-cta-content h2 {
    font-size: 25px;
    line-height: 1.08;
    margin-bottom: 9px;
    color: #111111;
  }

  .home-whatsapp-cta-content p {
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.55;
    color: #555555;
  }

  .home-whatsapp-cta-button {
    width: calc(100% - 36px);
    min-width: 0;
    height: 43px;
    margin: 18px 18px 20px;
    padding: 0 16px;
    font-size: 12.5px;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 380px) {
  .home-whatsapp-cta-container {
  width: 100%;
}

  .home-whatsapp-cta-bg {
    height: 132px;
  }

  .home-whatsapp-cta-content {
    padding: 20px 16px 0;
  }

  .home-whatsapp-cta-content h2 {
    font-size: 23px;
  }

  .home-whatsapp-cta-content p {
    font-size: 12px;
  }

  .home-whatsapp-cta-button {
    width: calc(100% - 32px);
    margin: 16px 16px 18px;
    height: 41px;
    font-size: 12px;
  }
}

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

.site-footer {
  width: 100%;
  background: linear-gradient(135deg, #050505 0%, #111111 100%);
  border-top: 1px solid rgba(201, 162, 77, 0.35);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(197, 139, 31, 0.16), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 34%);
  pointer-events: none;
}

.footer-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 70px 0 58px;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.9fr;
  gap: 74px;
  position: relative;
  z-index: 2;
}

/* MARCA */

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo {
  width: 430px;
  max-width: 100%;
  display: inline-flex;
  margin-bottom: 26px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 460px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* COLUNAS */

.footer-column h3 {
  color: #c58b1f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 34px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  width: 58px;
  height: 2px;
  background: #c58b1f;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: -16px;
}

/* ATENDIMENTO */

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.25s ease;
}

.footer-contact-item:last-child {
  border-bottom: none;
}

.footer-contact-item:hover {
  transform: translateX(4px);
}

.footer-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(197, 139, 31, 0.7);
  border-radius: 50%;
  color: #c58b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item:first-of-type .footer-icon svg,
.footer-contact-item:nth-of-type(3) .footer-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-contact-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-contact-item small {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.66);
}

/* LINKS INSTITUCIONAIS */

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  min-height: 58px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.25s ease;
}

.footer-links a:last-child {
  border-bottom: none;
}

.footer-links a span {
  color: #c58b1f;
  font-size: 22px;
  line-height: 1;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #c58b1f;
}

.footer-links a:hover span {
  transform: translateX(4px);
}

/* COPYRIGHT */

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201, 162, 77, 0.42);
  padding: 30px 0 34px;
  text-align: center;
}

.footer-bottom-line {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c58b1f, transparent);
  margin: -31px auto 26px;
  position: relative;
}

.footer-bottom-line::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #c58b1f;
  border: 2px solid #0b0b0b;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  top: -5px;
  margin-left: -5px;
}

.footer-bottom p {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

/* TABLET - RODAPÉ */

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 360px;
  }
}

/* MOBILE - RODAPÉ */

@media (max-width: 700px) {
  .site-footer {
    padding-bottom: 78px;
  }

  .footer-container {
    width: calc(100% - 32px);
    padding: 44px 0 34px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo {
    width: 255px;
    margin-bottom: 18px;
  }

  .footer-brand p {
    max-width: 310px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .footer-column h3 {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 28px;
  }

  .footer-column h3::after {
    width: 42px;
    height: 1.5px;
    bottom: -12px;
  }

  .footer-contact-item {
    min-height: 64px;
    grid-template-columns: 46px 1fr;
    gap: 13px;
    padding: 12px 0;
  }

  .footer-icon {
    width: 42px;
    height: 42px;
  }

  .footer-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-contact-item strong {
    font-size: 14.5px;
  }

  .footer-contact-item small {
    font-size: 12.5px;
  }

  .footer-links a {
    min-height: 50px;
    font-size: 14.5px;
  }

  .footer-bottom {
    padding: 26px 20px 30px;
  }

  .footer-bottom-line {
    width: 120px;
    margin-bottom: 22px;
  }

  .footer-bottom p {
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  .footer-container {
    width: calc(100% - 28px);
  }

  .footer-logo {
    width: 235px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-contact-item strong,
  .footer-links a {
    font-size: 14px;
  }

  .footer-contact-item small {
    font-size: 12px;
  }
}

.footer-youtube-icon svg {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-youtube-icon svg path:first-child {
  fill: none !important;
  stroke: currentColor;
}

.footer-youtube-icon svg path:last-child {
  fill: currentColor !important;
  stroke: none;
}

/* =====================================================
   HOME - DISTRIBUIDORES EM BANNERS HORIZONTAIS
   Alteração aplicada somente na página principal
===================================================== */

.home-distributors-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-distributor-banner {
  width: 100%;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-distributor-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 139, 31, 0.48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.085);
}

.home-distributor-banner-link {
  width: 100%;
  min-height: 182px;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: stretch;
  color: inherit;
  text-decoration: none;
}

.home-distributor-banner-link:hover {
  color: inherit;
  text-decoration: none;
}

.home-distributor-banner-link:focus-visible {
  outline: 3px solid #c58b1f;
  outline-offset: -5px;
  border-radius: 34px;
}

.home-distributor-banner-image {
  width: 100%;
  height: 182px;
  min-width: 0;
  overflow: hidden;
  background: #101010;
}

.home-distributor-banner-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.38s ease;
}

.home-distributor-banner:hover .home-distributor-banner-image img {
  transform: scale(1.025);
}

.home-distributor-banner-content {
  min-width: 0;
  min-height: 182px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 30px;
  padding: 24px 28px 24px 34px;
  background: #ffffff;
}

.home-distributor-banner-text {
  min-width: 0;
}

.home-distributor-banner-text h3 {
  margin: 0 0 5px;
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 600;
  color: #111111;
}

.home-distributor-banner-category {
  display: block;
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: #c58b1f;
}

.home-distributor-banner-text p {
  max-width: 580px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 400;
  color: #555555;
}

.home-distributor-banner-button {
  width: 220px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 1.5px solid #c58b1f;
  border-radius: 16px;
  background: #ffffff;
  color: #b77913;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.home-distributor-banner-button > span {
  margin: 0;
  color: inherit;
}

.home-distributor-banner-button strong {
  display: inline-block;
  margin: 0;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.home-distributor-banner:hover .home-distributor-banner-button {
  background: #fff9ef;
  color: #9b6510;
}

.home-distributor-banner:hover .home-distributor-banner-button strong {
  transform: translateX(4px);
}

/* NOTEBOOK E TABLET HORIZONTAL */

@media (max-width: 1100px) {
  .home-distributor-banner-link {
    grid-template-columns: 38% 62%;
  }

  .home-distributor-banner-content {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 22px;
    padding: 22px 24px 22px 28px;
  }

  .home-distributor-banner-button {
    width: 190px;
    padding: 0 18px;
  }
}

/* TABLET VERTICAL */

@media (max-width: 820px) {
  .home-distributor-banner {
    border-radius: 28px;
  }

  .home-distributor-banner-link {
    min-height: 176px;
    grid-template-columns: 40% 60%;
  }

  .home-distributor-banner-image {
    height: 176px;
  }

  .home-distributor-banner-content {
    min-height: 176px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 22px;
  }

  .home-distributor-banner-text h3 {
    font-size: 27px;
  }

  .home-distributor-banner-text p {
    font-size: 12px;
  }

  .home-distributor-banner-button {
    width: 100%;
    max-width: 230px;
    min-height: 48px;
  }

  .home-distributor-banner-link:focus-visible {
    border-radius: 28px;
  }
}

/* CELULAR */

@media (max-width: 600px) {
  .home-distributors-list {
    gap: 18px;
  }

  .home-distributor-banner {
    border-radius: 25px;
  }

  .home-distributor-banner-link {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-distributor-banner-image {
    height: 190px;
  }

  .home-distributor-banner-content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px 20px;
  }

  .home-distributor-banner-text h3 {
    margin-bottom: 5px;
    font-size: 26px;
  }

  .home-distributor-banner-category {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .home-distributor-banner-text p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .home-distributor-banner-button {
    width: 100%;
    max-width: none;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 15px;
  }

  .home-distributor-banner-link:focus-visible {
    border-radius: 25px;
  }
}

@media (max-width: 380px) {
  .home-distributor-banner {
    border-radius: 22px;
  }

  .home-distributor-banner-image {
    height: 170px;
  }

  .home-distributor-banner-content {
    padding: 20px 18px 18px;
  }

  .home-distributor-banner-text h3 {
    font-size: 24px;
  }

  .home-distributor-banner-link:focus-visible {
    border-radius: 22px;
  }
}

/* ============================= */
/* PESQUISA DE PRODUTOS - HOME */
/* ============================= */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-distributor-search {
  width: 100%;
  margin: 8px 0 30px;
}

.home-distributor-search-field {
  width: 100%;
  min-height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(197, 139, 31, 0.42);
  border-radius: 18px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.055),
    0 2px 8px rgba(197, 139, 31, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.home-distributor-search-field:focus-within {
  border-color: #c58b1f;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.07),
    0 0 0 4px rgba(197, 139, 31, 0.13);
  transform: translateY(-1px);
}

.home-distributor-search-icon {
  width: 62px;
  min-width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c58b1f;
  pointer-events: none;
}

.home-distributor-search-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-distributor-search-field input {
  width: 100%;
  height: 62px;
  padding: 0 60px 0 2px;
  border: none;
  outline: none;
  background: transparent;
  color: #111111;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}

.home-distributor-search-field input::placeholder {
  color: #77736d;
  opacity: 1;
  font-weight: 400;
}

.home-distributor-search-field input::-webkit-search-decoration,
.home-distributor-search-field input::-webkit-search-cancel-button,
.home-distributor-search-field input::-webkit-search-results-button,
.home-distributor-search-field input::-webkit-search-results-decoration {
  display: none;
}

.home-distributor-search-clear {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(197, 139, 31, 0.28);
  border-radius: 50%;
  background: #fbf6ec;
  color: #a96f13;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.home-distributor-search-clear:hover {
  background: #c58b1f;
  color: #ffffff;
  border-color: #c58b1f;
  transform: translateY(-50%) scale(1.04);
}

.home-distributor-search-clear:focus-visible {
  outline: 3px solid rgba(197, 139, 31, 0.25);
  outline-offset: 2px;
}

.home-distributor-search-clear[hidden] {
  display: none !important;
}

.home-distributor-search-status {
  min-height: 22px;
  margin: 10px 4px 0;
  color: #665d50;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 500;
}

.home-distributor-banner[hidden] {
  display: none !important;
}

/* TABLET */

@media (max-width: 820px) {
  .home-distributor-search {
    margin-bottom: 26px;
  }

  .home-distributor-search-field {
    min-height: 60px;
    border-radius: 16px;
  }

  .home-distributor-search-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }

  .home-distributor-search-icon svg {
    width: 23px;
    height: 23px;
  }

  .home-distributor-search-field input {
    height: 58px;
    font-size: 14px;
  }

  .home-distributor-search-clear {
    width: 38px;
    height: 38px;
    right: 10px;
  }
}

/* CELULAR */

@media (max-width: 600px) {
  .home-distributor-search {
    margin: 4px 0 22px;
  }

  .home-distributor-search-field {
    min-height: 56px;
    border-radius: 15px;
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.05),
      0 2px 7px rgba(197, 139, 31, 0.07);
  }

  .home-distributor-search-icon {
    width: 52px;
    min-width: 52px;
    height: 54px;
  }

  .home-distributor-search-icon svg {
    width: 21px;
    height: 21px;
  }

  .home-distributor-search-field input {
    height: 54px;
    padding-right: 52px;
    font-size: 13.5px;
  }

  .home-distributor-search-clear {
    width: 35px;
    height: 35px;
    right: 9px;
    font-size: 22px;
  }

  .home-distributor-search-status {
    min-height: 20px;
    margin-top: 8px;
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  .home-distributor-search-field {
    border-radius: 14px;
  }

  .home-distributor-search-icon {
    width: 48px;
    min-width: 48px;
  }

  .home-distributor-search-field input {
    font-size: 13px;
  }
}

/* ============================= */
/* MENU GLOBAL SEM ABA DISTRIBUIDORES */
/* ============================= */

/*
  Remove a aba "Distribuidores" dos menus de todas as páginas,
  incluindo links para distribuidores.html e âncoras #distribuidores.
*/
.desktop-menu a[href*="distribuidores"],
.mobile-side-links a[href*="distribuidores"],
.mobile-bottom-nav a[href*="distribuidores"] {
  display: none !important;
}

/* Após retirar Distribuidores, o menu inferior passa a ter 3 abas. */
@media (max-width: 700px) {
  .mobile-bottom-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* RESULTADOS POR CATEGORIA */
/* ============================= */

.categories-section[hidden],
.category-results-section[hidden] {
  display: none !important;
}

.category-results-section {
  width: 100%;
  padding: 42px 0 74px;
  background: #fbfaf7;
  scroll-margin-top: 112px;
}

.category-results-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.category-results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.category-results-back {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(197, 139, 31, 0.48);
  border-radius: 8px;
  background: #ffffff;
  color: #9d6810;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.045);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.category-results-back span {
  font-size: 19px;
  line-height: 1;
}

.category-results-back:hover {
  background: #c58b1f;
  color: #ffffff;
  border-color: #c58b1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(197, 139, 31, 0.22);
}

.category-results-back:focus-visible {
  outline: 3px solid rgba(197, 139, 31, 0.25);
  outline-offset: 3px;
}

.category-results-count {
  color: #8b6a32;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.category-results-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.category-results-heading > span {
  color: #b9851f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.category-results-heading h2 {
  font-family: "Poynter Display", Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 600;
  color: #111111;
  margin: 9px 0 12px;
}

.category-results-heading h2 strong {
  color: #c58b1f;
  font-weight: 600;
}

.category-results-heading p {
  max-width: 650px;
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
}

.category-results-list {
  margin-top: 0;
}

.category-results-empty {
  padding: 26px;
  border: 1px solid rgba(197, 139, 31, 0.28);
  border-radius: 12px;
  background: #ffffff;
  color: #555555;
  text-align: center;
  font-size: 14px;
}

.category-results-empty[hidden] {
  display: none !important;
}

.category-results-bottom {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.category-results-back-bottom {
  min-width: 210px;
}

@media (max-width: 900px) {
  .category-results-container {
    width: calc(100% - 48px);
  }

  .category-results-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 700px) {
  .category-results-section {
    padding: 30px 0 54px;
    scroll-margin-top: 92px;
  }

  .category-results-container {
    width: calc(100% - 32px);
  }

  .category-results-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }

  .category-results-back {
    width: 100%;
  }

  .category-results-count {
    width: 100%;
    text-align: center;
  }

  .category-results-heading {
    margin-bottom: 24px;
  }

  .category-results-heading h2 {
    font-size: 30px;
  }

  .category-results-heading p {
    font-size: 13px;
  }

  .category-results-bottom {
    margin-top: 24px;
  }

  .category-results-back-bottom {
    width: 100%;
  }
}