@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Oswald:wght@500;600;700&display=swap");

:root {
  --ink: #0b0d10;
  --ink-soft: #1a1f26;
  --steel: #3a4450;
  --paper: #f2f1ed;
  --paper-deep: #e6e4de;
  --cyan: #12b5de;
  --cyan-deep: #0a8faf;
  --line: rgba(11, 13, 16, 0.12);
  --text: #1c2229;
  --muted: #5c6773;
  --font-display: "Oswald", sans-serif;
  --font-body: "Barlow", sans-serif;
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(18, 181, 222, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f6f2 0%, var(--paper) 40%, #ebe9e3 100%);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-header__search {
  position: relative;
  flex: 1 1 16rem;
  max-width: 22rem;
  display: none;
}

.site-header__search input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 2.75rem 0 1rem;
  border-radius: 2px;
  font: 500 0.95rem/1 var(--font-body);
}

.site-header__search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-header__search input:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: transparent;
}

.site-header__search button {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-header__toggle {
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.site-header__toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #fff;
}

.site-header__nav {
  flex-basis: 100%;
}

.site-nav {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav > li > a,
.site-nav .dropdown-toggle {
  display: block;
  padding: 0.55rem 0;
  color: #fff !important;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: 0;
}

.site-nav > li > a:hover,
.site-nav .dropdown-toggle:hover {
  color: var(--cyan) !important;
}

.site-nav .dropdown-menu {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 0.35rem 0;
}

.site-nav .dropdown-item {
  color: #fff;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.site-nav .dropdown-item:hover {
  background: rgba(18, 181, 222, 0.15);
  color: #fff;
}

.site-header__whatsapp {
  display: none;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-header__whatsapp i {
  color: #25d366;
  font-size: 1.15rem;
}

.site-header__whatsapp:hover {
  color: var(--cyan);
}

@media (min-width: 992px) {
  .site-header__search {
    display: block;
  }

  .site-header__toggle {
    display: none;
  }

  .site-header__nav {
    display: flex !important;
    flex-basis: auto;
    margin-left: auto;
  }

  .site-nav {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
  }

  .site-nav > li > a,
  .site-nav .dropdown-toggle {
    padding: 0;
  }

  .site-header__whatsapp {
    display: inline-flex;
    margin-left: 1.25rem;
  }
}

/* ========== Buttons ========== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-cta--primary {
  background: var(--cyan);
  color: var(--ink);
}

.btn-cta--primary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-cta--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn-cta--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-cta--dark {
  background: var(--ink);
  color: #fff;
}

.btn-cta--dark:hover {
  background: var(--cyan-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ========== Páginas internas ========== */
.page-head {
  padding: 2.5rem 0 3rem;
  background:
    linear-gradient(165deg, #f7f7f7 0%, #ececec 45%, #e3e3e3 100%);
  border-bottom: 1px solid var(--line);
}

.page-head__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-head__breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-head__breadcrumb a:hover {
  color: var(--cyan-deep);
}

.page-head__breadcrumb span[aria-current] {
  color: var(--ink);
}

.page-head__label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.page-head h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
}

.page-head__lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-intro {
  padding: 4.5rem 0;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.about-block h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-block p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(11, 13, 16, 0.72);
}

.about-mission {
  padding: 0 0 4.5rem;
}

.about-mission__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-mission__media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.about-mission__media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  display: block;
}

.about-mission__label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.about-mission__content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
}

.about-mission__content p {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(11, 13, 16, 0.72);
}

.about-values {
  padding: 4.5rem 0;
  background: var(--ink);
  color: #fff;
}

.about-values__head h2 {
  margin: 0 0 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-value {
  padding: 1.75rem 1.5rem;
  background: var(--ink);
}

.about-value__num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

.about-value h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.about-value p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
  .about-intro__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .about-mission__layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

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

@media (min-width: 992px) {
  .page-head {
    padding: 3rem 0 3.5rem;
  }

  .about-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== Benefícios ========== */
.benefits-list {
  padding: 4.5rem 0;
}

.benefits-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-card {
  padding: 1.75rem 1.5rem;
  background: #fff;
}

.benefit-card__num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan-deep);
}

.benefit-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.benefits-cta {
  padding: 0 0 4.5rem;
}

.benefits-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--ink);
  color: #fff;
}

.benefits-cta__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.benefits-cta__inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}

.benefits-cta .btn-cta--primary {
  color: var(--ink);
}

@media (min-width: 768px) {
  .benefits-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
  }
}

@media (min-width: 992px) {
  .benefits-list__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== Contato ========== */
.contact-page {
  padding: 4.5rem 0;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form,
.contact-info {
  padding: 2rem;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-form h2,
.contact-info h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-form__field {
  margin-bottom: 1.15rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: #fafafa;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--cyan-deep);
  background: #fff;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form .btn-cta {
  width: 100%;
}

.contact-info__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.contact-info__item a,
.contact-info__item > span:last-child {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  text-decoration: none;
}

.contact-info__item a:hover {
  color: var(--cyan-deep);
}

.contact-info__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info__actions .btn-cta {
  flex: 1;
}

.contact-info__social {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-info__social:hover {
  border-color: var(--cyan-deep);
  color: var(--cyan-deep);
  background: rgba(18, 181, 222, 0.06);
}

@media (min-width: 992px) {
  .contact-page__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }

  .contact-form,
  .contact-info {
    padding: 2.25rem;
  }

  .contact-form .btn-cta {
    width: auto;
  }
}

/* ========== Produtos ========== */
.products-page {
  padding: 3.5rem 0 4.5rem;
}

.products-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.products-filters__card {
  background: #fff;
  border: 1px solid var(--line);
}

.products-filters__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 0;
}

.products-filters__label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.products-filters__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.products-filters__close {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.products-filters__clear {
  display: inline-flex;
  margin: 0.85rem 1.35rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  text-decoration: none;
}

.products-filters__clear:hover {
  color: var(--ink);
}

.products-filters__body {
  padding: 0.75rem 0 0.5rem;
}

.products-filters__section {
  border-top: 1px solid var(--line);
}

.products-filters__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.35rem;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.products-filters__toggle i {
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.25s ease;
}

.products-filters__section.is-open .products-filters__toggle i {
  transform: rotate(180deg);
}

.products-filters__content {
  display: none;
  padding: 0 1.35rem 1.25rem;
}

.products-filters__section.is-open .products-filters__content {
  display: block;
}

.products-filters__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  background: #fafafa;
}

.products-filters__search i {
  color: var(--muted);
  font-size: 0.85rem;
}

.products-filters__search input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
}

.products-filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 16rem;
  overflow-y: auto;
}

.products-filters__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.products-filters__option:hover {
  background: #f5f5f5;
  color: var(--ink);
}

.products-filters__option.is-active {
  background: rgba(18, 181, 222, 0.08);
  border-color: rgba(18, 181, 222, 0.35);
  color: var(--ink);
  font-weight: 600;
}

.products-filters__count {
  flex-shrink: 0;
  min-width: 1.6rem;
  padding: 0.15rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
  background: #f0f0f0;
}

.products-filters__option.is-active .products-filters__count {
  color: var(--cyan-deep);
  background: rgba(18, 181, 222, 0.15);
}

.products-filters__brands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-height: 14rem;
  overflow-y: auto;
}

.products-filters__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.products-filters__brand:hover {
  border-color: var(--cyan-deep);
  color: var(--ink);
}

.products-filters__brand.is-active {
  border-color: var(--cyan);
  background: rgba(18, 181, 222, 0.1);
  color: var(--ink);
  font-weight: 600;
}

.products-filters__brand .products-filters__count {
  min-width: auto;
  padding: 0;
  background: transparent;
  font-size: 0.7rem;
}

.products-filters__open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

.products-filters__backdrop {
  display: none;
}

.products-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.products-page__meta {
  flex: 1;
  min-width: 12rem;
}

.products-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.products-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(18, 181, 222, 0.35);
  background: rgba(18, 181, 222, 0.08);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.products-page__chip:hover {
  background: rgba(18, 181, 222, 0.16);
}

.products-page__chip span {
  font-size: 1rem;
  line-height: 1;
  color: var(--cyan-deep);
}

.products-page__count {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

body.filters-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .products-filters {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .products-filters.is-open {
    pointer-events: auto;
    opacity: 1;
  }

  .products-filters__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(11, 13, 16, 0.55);
  }

  .products-filters__card {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(22rem, 92vw);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.3s ease;
  }

  .products-filters.is-open .products-filters__card {
    transform: translateX(0);
  }

  .products-filters__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .products-page__layout {
    grid-template-columns: 18rem 1fr;
    gap: 3rem;
  }

  .products-filters {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .products-filters__open {
    display: none;
  }

  .products-filters__toggle {
    pointer-events: none;
  }

  .products-filters__toggle i {
    display: none;
  }

  .products-filters__content {
    display: block;
  }
}

/* ========== Categorias ========== */
.categories-page {
  padding: 3.5rem 0 4.5rem;
}

.categories-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.categories-page__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 14rem;
  max-width: 22rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  background: #fff;
}

.categories-page__search i {
  color: var(--muted);
  font-size: 0.85rem;
}

.categories-page__search input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
}

.categories-page__count {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  border-color: rgba(18, 181, 222, 0.45);
  box-shadow: 0 12px 32px rgba(11, 13, 16, 0.06);
}

.category-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f5f5f5;
}

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

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

.category-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
}

.category-card__num {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan-deep);
}

.category-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.category-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.category-card h2 a:hover {
  color: var(--cyan-deep);
}

.category-card__body > p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.category-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.category-card__link:hover {
  color: var(--cyan-deep);
  border-color: var(--cyan-deep);
}

.categories-page__empty {
  grid-column: 1 / -1;
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
}

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

@media (min-width: 992px) {
  .category-card {
    grid-template-columns: 42% 1fr;
  }

  .category-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .category-card__body {
    padding: 1.75rem;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ========== Produto ========== */
.page-head--compact {
  padding: 1.75rem 0 0;
  background: transparent;
  border-bottom: 0;
}

.page-head--compact .page-head__breadcrumb {
  margin-bottom: 0;
}

.product-detail {
  padding: 2rem 0 3.5rem;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-detail__media {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.product-detail__media img {
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  margin: 0 auto;
}

.product-detail__category {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.product-detail__info h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
}

.product-detail__code {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-detail__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(18, 181, 222, 0.15);
  border: 1px solid rgba(18, 181, 222, 0.35);
}

.product-detail__description {
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(11, 13, 16, 0.78);
}

.btn-cta--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-cta--whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

.product-share {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.product-share__label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-share__btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-share__btn:hover {
  border-color: var(--cyan-deep);
  color: var(--cyan-deep);
  background: rgba(18, 181, 222, 0.08);
}

.product-share__btn.is-copied {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  background: rgba(18, 181, 222, 0.12);
}

.product-share__feedback {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan-deep);
}

.product-specs {
  padding: 0 0 3.5rem;
}

.product-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.product-specs__panel {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
}

.product-specs__panel h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.product-specs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
  gap: 0.5rem;
}

.product-specs__list li {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  color: var(--ink);
  background: #f7f7f7;
  border: 1px solid var(--line);
}

.product-specs__list--scroll {
  display: block;
  max-height: 16rem;
  overflow-y: auto;
}

.product-specs__list--scroll li {
  margin-bottom: 0.45rem;
}

.product-related {
  padding: 0 0 4.5rem;
}

.product-related__head h2 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (min-width: 992px) {
  .product-detail__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }

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

/* ========== Home hero ========== */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.home-hero__media,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-zoom 14s ease-out forwards;
}

.home-hero__veil {
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.72) 100%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.55) 0%, rgba(11, 13, 16, 0.4) 45%, rgba(11, 13, 16, 0.55) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.home-hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  animation: rise-in 0.7s ease both;
}

.home-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: rise-in 0.75s ease 0.08s both;
}

.home-hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  animation: rise-in 0.8s ease 0.16s both;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  animation: rise-in 0.85s ease 0.24s both;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__media img,
  .home-hero__brand,
  .home-hero h1,
  .home-hero__lead,
  .home-hero__actions,
  .home-product,
  .home-story__detail {
    animation: none !important;
    transition: none !important;
  }
}

/* ========== Story / apresentação ========== */
.home-story {
  --story-black: #0b0d10;
  --story-cyan: #12b5de;
  padding: 5.5rem 0;
  background:
    linear-gradient(165deg, #f7f7f7 0%, #ececec 45%, #e3e3e3 100%);
  color: var(--story-black);
}

.home-story__head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.home-story__mark {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--story-cyan);
}

.home-story__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--story-black);
}

.home-story__layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.home-story__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-story__tab {
  position: relative;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1rem 1.1rem 1.25rem;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-left: 2px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(11, 13, 16, 0.45);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-story__tab-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.home-story__tab-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-story__tab.is-active,
.home-story__tab:hover {
  color: var(--story-black);
  background: #fff;
}

.home-story__tab.is-active {
  border-left-color: var(--story-cyan);
  box-shadow: 0 8px 24px rgba(11, 13, 16, 0.06);
}

.home-story__tab.is-active .home-story__tab-num {
  color: var(--story-cyan);
}

.home-story__tab:focus-visible {
  outline: 1px solid var(--story-cyan);
  outline-offset: 3px;
}

.home-story__detail {
  position: relative;
  padding: 2.25rem 2rem;
  background: #fff;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-top: 3px solid var(--story-cyan);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-story__detail.is-updating {
  opacity: 0;
  transform: translateY(6px);
}

.home-story__detail-num {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(18, 181, 222, 0.22);
}

.home-story__detail-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--story-black);
}

.home-story__detail-text {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(11, 13, 16, 0.72);
}

.home-story__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--story-cyan);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.home-story__detail-link::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.home-story__detail-link:hover {
  color: var(--story-black);
}

.home-story__detail-link:hover::after {
  width: 2.25rem;
}

@media (min-width: 992px) {
  .home-story {
    padding: 6.5rem 0;
  }

  .home-story__head {
    margin-bottom: 3.5rem;
  }

  .home-story__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
  }

  .home-story__detail {
    padding: 2.75rem 2.5rem;
    min-height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ========== Products ========== */
.home-catalog {
  padding: 4.5rem 0 3.5rem;
}

.home-catalog__intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.home-catalog__intro h2,
.home-download h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.home-catalog__intro p,
.home-download p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .home-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .home-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-product {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  animation: rise-in 0.7s ease both;
}

.home-product:nth-child(2) { animation-delay: 0.05s; }
.home-product:nth-child(3) { animation-delay: 0.1s; }
.home-product:nth-child(4) { animation-delay: 0.15s; }
.home-product:nth-child(5) { animation-delay: 0.2s; }
.home-product:nth-child(6) { animation-delay: 0.25s; }

.home-product__media {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 5 / 4;
}

.home-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  transition: transform 0.45s ease;
}

.home-product:hover .home-product__media img {
  transform: scale(1.04);
}

.home-product__body {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-product__group {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 600;
}

.home-product h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-product h3 a {
  text-decoration: none;
  color: var(--ink);
}

.home-product h3 a:hover {
  color: var(--cyan-deep);
}

.home-product__wa {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--cyan);
  width: fit-content;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-product__wa:hover {
  color: var(--cyan-deep);
  border-color: var(--cyan-deep);
}

.home-products__empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

.home-catalog__more {
  margin-top: 2.5rem;
}

.home-catalog__more a {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.15rem;
}

.home-catalog__more a:hover {
  color: var(--cyan-deep);
  border-color: var(--cyan-deep);
}

/* ========== Download ========== */
.home-download {
  padding: 0 0 4.5rem;
}

.home-download__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-download .btn-cta--primary {
  color: #fff;
  background: var(--ink);
}

.home-download .btn-cta--primary:hover {
  background: var(--cyan-deep);
  color: #fff;
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  margin-top: auto;
  background: linear-gradient(180deg, #0f1217 0%, #080a0d 100%);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 0;
}

.site-footer__cta-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.site-footer__cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  background: var(--cyan);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__cta-btn:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

.site-footer__main {
  padding: 3.5rem 0 2.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  color: #fff;
}

.site-footer__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer__wordmark strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-footer__wordmark small {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__tagline {
  margin: 0 0 1.35rem;
  max-width: 26rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-footer__col h2,
.site-footer__contact h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__col ul,
.site-footer__contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__col a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-footer__col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.site-footer__col a:hover {
  color: #fff;
}

.site-footer__col a:hover::after {
  width: 100%;
}

.site-footer__contact {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer__contact ul {
  gap: 1rem;
}

.site-footer__contact a,
.site-footer__contact-static {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: #fff;
}

.site-footer__contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.site-footer__contact a span:last-child,
.site-footer__contact-static span:last-child {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-footer__contact a:hover span:last-child {
  color: #fff;
}

.site-footer__social {
  display: flex;
  gap: 0.5rem;
}

.site-footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-footer__social a:hover {
  border-color: var(--cyan);
  color: var(--ink);
  background: var(--cyan);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bar-inner {
  padding: 1.15rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__bar-inner p {
  margin: 0;
}

@media (min-width: 768px) {
  .site-footer__cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 0;
  }

  .site-footer__grid {
    grid-template-columns: 1.25fr 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

@media (min-width: 992px) {
  .site-footer__main {
    padding: 4rem 0 2.75rem;
  }

  .site-footer__grid {
    grid-template-columns: 1.35fr 0.95fr 1.05fr;
    gap: 4rem;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.55rem;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ========== Compat: outras páginas ========== */
.custom-header-top,
.custom-logo-search,
.custom-menu {
  display: none;
}

.breadcrumb {
  font-size: 0.9rem;
  background-color: transparent;
}

.breadcrumb a:hover {
  color: var(--cyan-deep);
}

.titulo {
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.destaque {
  color: var(--cyan-deep);
  text-transform: uppercase;
}

.btn-primary {
  font-weight: 600;
  background-color: var(--cyan-deep);
  border: 0;
  border-radius: 2px;
}

.btn-primary:hover {
  background-color: var(--ink);
}

.text-primary {
  color: var(--cyan-deep) !important;
}

.card {
  border-radius: 2px;
}

.card:hover {
  transform: none;
}

.card-body .btn {
  border-radius: 2px;
}

.card-body .btn:hover {
  background-color: var(--cyan-deep);
}

.codigo {
  color: var(--cyan-deep);
  font-size: 1em;
  font-weight: 600;
}

.categoria {
  font-size: 1em;
  color: var(--cyan-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
