@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --logo-navy: #0b1b2b;
  --logo-navy-deep: #07111d;
  --logo-gold: #a87b2d;
  --logo-gold-dark: #76551d;
  --bg-paper: #ffffff;
  --bg-muted: #f8f9fa;
  --text-dark: #1e252c;
  --text-light: #59636f;
  --border-color: #e5e8ec;
  --color-navy: var(--logo-navy);
  --color-navy-deep: var(--logo-navy-deep);
  --color-paper: var(--bg-paper);
  --color-white: #ffffff;
  --color-gold: var(--logo-gold);
  --color-gold-dark: var(--logo-gold-dark);
  --color-action-blue: #2f5f93;
  --color-action-blue-dark: #24486f;
  --color-wood: #6b4b2f;
  --color-text: var(--text-dark);
  --color-muted: var(--text-light);
  --color-line: var(--border-color);
  --color-line-soft: rgba(30, 37, 44, 0.10);
  --color-divider-surface: rgba(255, 255, 255, 0.97);
  --color-placeholder: #f1f3f5;
  --color-whatsapp: #25d366;
  --font-title: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --shadow-soft: 0 10px 24px rgba(11, 27, 43, 0.05);
  --shadow-card: 0 18px 40px rgba(11, 27, 43, 0.08);
  --radius: 4px;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--bg-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--color-navy);
}

h1 {
  font-size: 2.55rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 10px 26px rgba(31, 27, 23, 0.06);
  backdrop-filter: blur(18px);
}

.top-bar {
  background: linear-gradient(180deg, #34383d 0%, #272b30 100%);
  color: var(--color-white);
  padding: 9px 16px;
  text-align: center;
}

.top-bar p {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 66px;
  max-width: 170px;
  object-fit: contain;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 6px;
  padding: 18px 16px 22px;
  background: rgba(255, 253, 248, 0.98);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 18px 30px rgba(31, 27, 23, 0.07);
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a.active,
.primary-nav a:not(.btn):hover,
.primary-nav a:not(.btn):focus {
  color: var(--color-gold-dark);
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  padding: 0;
  border: 1px solid #d9d0c4;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-navy);
  position: relative;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.16em;
  transition: color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 138, 98, 0) 0%, var(--color-gold) 20%, var(--color-gold-dark) 50%, var(--color-gold) 80%, rgba(176, 138, 98, 0) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
  color: var(--color-gold-dark);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: scaleX(1);
}

.btn-gold,
.contact-cta-strong {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(176, 138, 98, 0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(176, 138, 98, 0.94) 0%, rgba(125, 98, 70, 0.98) 100%);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(45, 36, 29, 0.12);
}

.btn-gold::after,
.contact-cta-strong::after {
  display: none;
}

.btn-gold:hover,
.btn-gold:focus-visible,
.contact-cta-strong:hover,
.contact-cta-strong:focus-visible {
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(125, 98, 70, 0.98) 0%, rgba(97, 77, 58, 1) 100%);
}

.btn-light {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 248, 241, 0.42);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(6px);
}

.btn-light:hover,
.btn-light:focus-visible {
  color: var(--color-white);
  background: rgba(255, 253, 248, 0.14);
}

.btn-outline {
  color: var(--color-navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--color-gold-dark);
}

.nav-cta {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(176, 138, 98, 0.48);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(176, 138, 98, 0.92) 0%, rgba(125, 98, 70, 0.98) 100%);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(44, 37, 30, 0.10);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(125, 98, 70, 0.98) 0%, rgba(99, 77, 56, 1) 100%);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-navy);
  background-position: center;
  background-size: cover;
}

/* IMAGEM/HOME:
   Trocar esta URL por uma foto real de textura de madeira nobre, preferencialmente hospedada em /img/hero-madeira.webp.
   Exemplo final: background-image: url("../../img/hero-madeira.webp"); */
.hero-home {
  min-height: calc(92vh - var(--header-height));
  background-color: #0b1726;
  background-image: url("../../img/Outras img/WhatsApp Image 2026-04-28 at 14.17.49.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* IMAGEM/INTERNAS:
   Trocar esta URL por foto real da fachada, fábrica ou detalhe de produção da Madeferro. */
.hero-internal {
  min-height: 40vh;
  background-image: url("../../img/Outras img/WhatsApp Image 2026-04-28 at 14.17.49.jpeg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 22, 25, 0.82) 0%, rgba(20, 22, 25, 0.72) 30%, rgba(20, 22, 25, 0.54) 56%, rgba(20, 22, 25, 0.26) 100%);
}

.hero-content {
  max-width: 900px;
  padding-block: 72px;
  text-align: center;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.hero-home-content {
  max-width: 1120px;
  padding-block: 96px 100px;
  text-align: left;
}

.hero-content h1 {
  color: var(--color-white);
  text-wrap: balance;
}

.hero-home-content h1 {
  max-width: 920px;
  margin-inline: 0;
  font-family: var(--font-title);
  font-size: 3.7rem;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-wrap: initial;
  text-shadow: 0 10px 28px rgba(17, 17, 17, 0.16);
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 1.05rem;
}

.hero-content > p.hero-lead {
  max-width: 620px;
  margin-top: 22px;
  margin-inline: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 251, 245, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions .btn::after {
  background: linear-gradient(90deg, rgba(176, 138, 98, 0) 0%, rgba(176, 138, 98, 0.88) 26%, rgba(125, 98, 70, 1) 50%, rgba(176, 138, 98, 0.88) 74%, rgba(176, 138, 98, 0) 100%);
}

.hero-actions .btn:hover,
.hero-actions .btn:focus-visible {
  color: #f4e7d9;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 72px 0;
}

/* Shape divider inspirado no perfil superior das urnas: geométrico, visível e alinhado à identidade da Madeferro. */
.section-divider {
  display: none !important;
}

.section-muted {
  background: linear-gradient(180deg, #faf7f2 0%, #f6f1ea 100%);
  border-block: 1px solid var(--color-line);
}

.section-benefits {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  background: linear-gradient(180deg, #fbf8f4 0%, #f7f2eb 100%);
}

.section-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(176, 138, 98, 0.10), rgba(176, 138, 98, 0) 26%),
    radial-gradient(circle at 74% 50%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 32%);
  opacity: 0.86;
}

.benefits-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
}

.benefits-copy {
  max-width: 640px;
}

.benefits-line {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.benefits-kicker {
  margin: 24px 0 10px;
  color: #9c9488;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.benefits-copy h2 {
  color: var(--color-navy);
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: none;
}

.benefits-list {
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #66625d;
  font-size: 0.96rem;
  line-height: 1.78;
}

.benefits-list li::before {
  content: "★";
  color: #f0c11f;
  font-size: 1.9rem;
  line-height: 1;
  transform: translateY(2px);
}

.benefits-link {
  margin-top: 34px;
}

/* Override final para garantir o marcador minimalista nos diferenciais,
   mesmo quando o arquivo mantiver um bloco antigo com caractere corrompido. */
.benefits-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.72em;
  border-radius: 50%;
  background: var(--color-gold);
  font-size: 0;
  line-height: 0;
  transform: none;
}

.section-showcase {
  background: linear-gradient(180deg, #fdfaf6 0%, #f8f2ea 100%);
}

.showcase-header {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6ddd0;
}

.showcase-heading {
  max-width: 760px;
}

.showcase-heading h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
}

.showcase-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  color: var(--color-muted);
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  color: var(--color-navy);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(11, 27, 43, 0.48);
}

.showcase-grid {
  display: grid;
  gap: 24px;
}

.showcase-lead,
.showcase-item {
  background: transparent;
  border: 0;
}

.showcase-lead {
  position: relative;
}

.showcase-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #ece7dd;
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.02) 0%, rgba(7, 17, 29, 0.10) 46%, rgba(7, 17, 29, 0.28) 100%);
}

.showcase-media img,
.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.showcase-lead:hover .showcase-media img,
.showcase-item:hover .showcase-thumb img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

.showcase-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(11, 27, 43, 0.88);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-copy {
  position: relative;
  width: min(88%, 500px);
  margin: -42px 0 0 22px;
  padding: 24px 22px 24px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 3px solid rgba(168, 123, 45, 0.72);
  box-shadow: 0 16px 32px rgba(25, 36, 48, 0.10);
  z-index: 1;
}

.showcase-tag {
  color: var(--color-gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.showcase-copy h3,
.showcase-item-copy h3 {
  margin-top: 10px;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 1.58rem;
  line-height: 1.08;
  font-weight: 700;
}

.showcase-copy > p:not(.showcase-tag),
.showcase-item-copy > p:not(.showcase-tag) {
  margin-top: 12px;
  color: #596573;
}

.showcase-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-points li {
  position: relative;
  padding-left: 18px;
  color: #3f4d5b;
}

.showcase-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--color-gold);
}

.showcase-list {
  display: grid;
  gap: 0;
}

.showcase-item {
  display: grid;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #ebe5da;
}

.showcase-item:first-child {
  padding-top: 0;
}

.showcase-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.showcase-thumb {
  min-height: 176px;
  overflow: hidden;
  background: #ece7dd;
}

.showcase-item-copy {
  display: grid;
  align-content: start;
  padding-right: 4px;
}

.showcase-item-copy h3 {
  font-size: 1.24rem;
  line-height: 1.12;
}

.section-pillars {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f3ec 100%);
}

.pillars-intro {
  max-width: 1120px;
  margin: 0 auto 52px;
  text-align: center;
}

.pillars-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

.pillars-mark svg {
  width: 100%;
  height: 100%;
}

.pillars-intro h2 {
  max-width: 1160px;
  margin-inline: auto;
  color: var(--color-navy);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.pillars-grid {
  display: grid;
  gap: 34px;
}

.pillar-item {
  text-align: center;
}

.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-icon path,
.pillar-icon circle {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-item:nth-child(2) .pillar-icon path,
.pillar-item:nth-child(2) .pillar-icon circle {
  stroke: #9f7c57;
}

.pillar-item:nth-child(3) .pillar-icon path,
.pillar-item:nth-child(3) .pillar-icon circle {
  stroke: #8c6e50;
}

.pillar-item h3 {
  max-width: 280px;
  margin: 0 auto;
  color: var(--color-navy);
  font-family: var(--font-title);
  font-size: 1.6rem;
  line-height: 1.24;
  font-weight: 500;
}

.pillar-item p {
  max-width: 330px;
  margin: 12px auto 0;
  color: #8a8178;
  font-size: 0.9rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--color-muted);
}

.featured-grid,
.product-grid,
.benefit-grid,
.principles-grid {
  display: grid;
  gap: 22px;
}

.featured-card,
.product-card,
.benefit-card,
.principle-card,
.form-panel,
.contact-card,
.summary-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow-soft);
}

.featured-card {
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.featured-card:hover {
  border-color: #7f8b99;
  box-shadow: var(--shadow-card);
}

.card-body,
.product-card-body {
  padding: 22px;
}

.card-body p,
.product-card-body p,
.benefit-card p,
.principle-card p {
  margin-top: 10px;
  color: var(--color-muted);
}

.benefit-card,
.principle-card {
  padding: 28px;
}

.benefit-card {
  border-top: 2px solid var(--color-gold);
}

.history-copy {
  max-width: 920px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-left: 2px solid var(--color-gold);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
}

.history-copy p + p {
  margin-top: 16px;
}

.principle-card {
  border-top: 2px solid var(--color-gold);
}

.values-card {
  grid-column: 1 / -1;
}

.values-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.values-list strong {
  color: var(--color-navy);
}

.product-photo {
  min-height: 210px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0) 42%),
    var(--color-placeholder);
  border-bottom: 1px solid var(--color-line);
}

.product-photo.has-image {
  min-height: 0;
  height: 220px;
  background: #f0e9df;
}

.product-photo.has-image::before {
  display: none;
}

.product-photo.has-image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  filter: none;
}

.photo-note {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(7, 17, 29, 0.78);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-photo::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 28%;
  height: 44%;
  border-radius: var(--radius);
  border: 1px solid #9aa5b2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.04));
  box-shadow: inset 0 -24px 36px rgba(7, 17, 29, 0.10);
}

.product-photo-wood {
  background-color: #d9dde2;
}

.product-photo-dark {
  background-color: #c7cdd4;
}

.product-photo-gold {
  background-color: #d9d2c2;
}

.product-photo-soft {
  background-color: #eceff2;
}

.section-authority {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(197, 152, 61, 0.10), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.company-summary {
  display: grid;
  gap: 36px;
  align-items: start;
}

.summary-copy {
  max-width: 560px;
}

.summary-copy h2 {
  max-width: 520px;
}

.summary-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 16px;
  color: var(--color-muted);
  line-height: 1.72;
}

.summary-copy .btn {
  margin-top: 30px;
}

.summary-panel {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 56px 28px 28px;
  overflow: hidden;
  border-color: #e6dece;
  background:
    linear-gradient(90deg, var(--color-gold) 0%, rgba(197, 152, 61, 0.14) 100%) top/100% 3px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.98));
  box-shadow: 0 18px 34px rgba(34, 42, 52, 0.08);
}

.summary-panel::before {
  content: "TRAJETORIA MADEFERRO";
  position: absolute;
  top: 18px;
  left: 28px;
  color: var(--color-gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-panel div {
  position: relative;
  padding: 24px 24px 22px;
  border: 1px solid #ebe3d6;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 22px rgba(34, 42, 52, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.summary-panel div::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--color-gold-dark);
}

.summary-panel div:hover {
  transform: translateY(-2px);
  border-color: #dcccae;
  box-shadow: 0 16px 30px rgba(34, 42, 52, 0.08);
}

.summary-panel strong {
  display: block;
  color: var(--color-gold-dark);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.summary-panel span {
  display: block;
  max-width: 220px;
  margin-top: 10px;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.section-authority {
  overflow: hidden;
  background: linear-gradient(180deg, #fbf8f3 0%, #f3ede5 100%);
}

.section-authority .company-summary {
  gap: 28px;
}

.section-authority .summary-panel {
  display: none;
}

.authority-visual {
  position: relative;
  order: 1;
  min-height: 360px;
}

.authority-visual::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 44px;
  width: 52%;
  height: 228px;
  background: linear-gradient(180deg, rgba(11, 27, 43, 0.08), rgba(11, 27, 43, 0.01));
  z-index: 0;
}

.authority-streak {
  position: absolute;
  z-index: 0;
  width: 124px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  transform: rotate(-32deg);
  box-shadow: 0 38px 0 rgba(168, 123, 45, 0.98), 0 76px 0 rgba(118, 85, 29, 0.95);
  opacity: 0.96;
}

.authority-streak-left {
  left: -24px;
  bottom: 18px;
}

.authority-streak-center {
  width: 88px;
  right: 8px;
  top: 108px;
  box-shadow: 0 34px 0 rgba(176, 138, 98, 0.92), 0 68px 0 rgba(125, 98, 70, 0.88);
}

.authority-card,
.authority-logo-tile {
  position: absolute;
  z-index: 1;
  margin: 0;
  border: 1px solid #e5dccf;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 38px rgba(29, 36, 46, 0.08);
}

.authority-card {
  padding: 14px;
}

.authority-card img,
.authority-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.authority-card-back {
  top: 0;
  left: 34%;
  width: 44%;
  height: 282px;
  background: linear-gradient(180deg, #12263a 0%, var(--color-navy-deep) 100%);
}

.authority-card-main {
  top: 30px;
  left: 6%;
  width: 50%;
  height: 238px;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 42px rgba(23, 30, 40, 0.16);
}

.authority-card-small {
  left: 6%;
  bottom: 0;
  width: 26%;
  height: 88px;
  padding: 12px;
}

.authority-card-main::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 18%;
  width: 16px;
  height: 62%;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.authority-logo-tile {
  right: 8%;
  bottom: 0;
  width: 78px;
  height: 78px;
  padding: 12px;
  border: 0;
  background: linear-gradient(180deg, #b98a37 0%, var(--color-gold-dark) 100%);
}

.authority-logo-tile img {
  display: none;
}

.authority-logo-tile::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--color-navy);
  transform: translate(-38%, -50%);
}

.section-authority .summary-copy {
  order: 2;
  max-width: 580px;
}

.section-authority .summary-copy .eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--color-gold-dark);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-authority .summary-copy .eyebrow::before {
  content: "";
  width: 46px;
  height: 30px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--color-gold) 0 0) left 7px top 10px/1px 14px no-repeat,
    linear-gradient(var(--color-gold) 0 0) left 15px top 10px/1px 14px no-repeat,
    linear-gradient(var(--color-gold) 0 0) left 23px top 10px/1px 14px no-repeat,
    linear-gradient(var(--color-gold) 0 0) left 31px top 10px/1px 14px no-repeat,
    linear-gradient(var(--color-gold) 0 0) left 7px top 10px/25px 1px no-repeat,
    linear-gradient(var(--color-gold) 0 0) left 7px bottom 6px/25px 1px no-repeat;
  opacity: 0.9;
}

.authority-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b98a37 0%, var(--color-gold-dark) 100%);
  color: var(--color-paper);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.section-authority .summary-copy h2 {
  max-width: 620px;
  margin-top: 14px;
  color: var(--color-navy);
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}
.authority-lead,
.section-authority .summary-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  color: #7d756c;
  font-size: 0.92rem;
  line-height: 1.86;
}

.section-authority .summary-copy .btn {
  margin-top: 18px;
}

.section-catalog-gallery {
  position: relative;
  overflow: hidden;
  padding-top: 36px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7f1e8 100%);
  border-top: 1px solid #eee7dc;
}

.catalog-gallery-frame {
  position: relative;
}

.catalog-gallery-heading {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 18px;
  text-align: center;
}

.catalog-gallery-line {
  display: block;
  width: 52px;
  height: 2px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.catalog-gallery-heading p {
  color: #a19689;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalog-gallery-heading h2 {
  margin-top: 2px;
  color: var(--color-navy);
  font-size: clamp(2.45rem, 3.4vw, 3.35rem);
  line-height: 0.92;
  text-transform: none;
  letter-spacing: -0.02em;
}

.catalog-gallery-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: center;
}

.catalog-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.catalog-gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd1c2;
  background: rgba(255, 253, 249, 0.92);
  color: var(--color-gold-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: #ffffff;
  border-color: #d8cdb9;
}

.gallery-card {
  display: grid;
  min-width: 0;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid #e8dfd3;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 43, 51, 0.08);
}

.gallery-card-media {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 10px 10px 6px;
  background: #f3ece3;
}

.gallery-card-media img {
  width: 100%;
  max-width: 174px;
  height: 96px;
  object-fit: contain;
}

.gallery-card-copy {
  padding: 12px 12px 13px;
  text-align: center;
}

.gallery-card-copy h3 {
  color: #857b70;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
}

.gallery-card-copy p {
  margin-top: 4px;
  color: var(--color-gold-dark);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
}

.timeline-year {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(176, 138, 98, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.96);
  color: var(--color-navy);
  font-weight: 500;
}

.timeline-content {
  padding: 24px;
  border-left: 2px solid var(--color-gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
}

.timeline-content p {
  margin-top: 12px;
  color: var(--color-muted);
}

.structure-grid {
  display: grid;
  gap: 18px;
}

.structure-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--color-navy);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.structure-item img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 160ms ease;
}

.structure-item:hover img {
  opacity: 1;
}

.structure-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(7, 17, 29, 0.82);
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-intro,
.contact-hero {
  padding: 58px 0 42px;
  background: linear-gradient(180deg, #fffdfa 0%, #f5efe7 100%);
  border-bottom: 1px solid var(--color-line);
}

.contact-hero {
  padding: 36px 0 24px;
}

.catalog-intro h1,
.contact-hero h1 {
  max-width: 780px;
  font-size: 2.3rem;
}

.contact-hero h1 {
  max-width: none;
  font-size: 1.82rem;
  line-height: 0.95;
}

.catalog-intro p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 14px;
  color: var(--color-muted);
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 10px;
}

.filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 900;
  padding: 12px 0;
  background: rgba(255, 252, 247, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.filter-actions {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.filter-actions::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-width: max-content;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  position: relative;
  transition: color 180ms ease;
}

.filter-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  color: var(--color-gold-dark);
}

.filter-button:hover::after,
.filter-button:focus-visible::after,
.filter-button.active::after {
  transform: scaleX(1);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-notice {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid var(--color-line);
  border-left: 2px solid var(--color-gold);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow-soft);
}

.catalog-notice h2 {
  font-size: 1.7rem;
}

.catalog-notice p {
  max-width: 880px;
  margin-top: 8px;
  color: var(--color-muted);
}

.product-card[hidden] {
  display: none;
}

.product-category {
  margin: 0;
  color: var(--color-gold-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h2 {
  margin-top: 6px;
  font-size: 1.52rem;
}

.btn-product {
  width: fit-content;
  margin-top: 20px;
  color: var(--color-navy);
}

.btn-product:hover,
.btn-product:focus-visible {
  color: var(--color-gold-dark);
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-info h2 {
  max-width: 520px;
  margin-bottom: 14px;
}

.contact-info {
  padding-top: 28px;
  border-top: 1px solid #e0d7cb;
}

.contact-info > p:not(.eyebrow) {
  color: var(--color-muted);
}

.contact-cta-band {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 0 0;
  border-top: 1px solid #e0d7cb;
}

.contact-cta-copy span {
  display: block;
  color: var(--color-gold-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-cta-copy strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  color: var(--color-navy);
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 0.98;
}

.form-panel {
  padding: 22px;
}

.form-panel-header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.form-panel h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.form-panel-header p {
  margin: 0;
  color: var(--color-muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--color-navy);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8cfc3;
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  color: var(--color-text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-action-blue);
  box-shadow: 0 0 0 2px rgba(47, 95, 147, 0.20);
}

.form-submit {
  width: fit-content;
  min-height: auto;
  margin-top: 6px;
  justify-self: start;
}

.form-status {
  min-height: 24px;
  color: var(--color-navy);
  font-weight: 700;
}

.site-footer {
  padding: 52px 0;
  background: linear-gradient(180deg, #2f3337 0%, #262a2e 100%);
  color: rgba(247, 242, 236, 0.78);
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer address a {
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer address a:hover,
.site-footer address a:focus-visible {
  color: var(--color-gold);
}

.site-footer address {
  font-style: normal;
}

.map-frame {
  width: 100%;
  min-height: 220px;
  border: 1px solid rgba(255, 244, 231, 0.16);
  border-radius: var(--radius);
  filter: grayscale(22%) contrast(0.94);
}

.footer-credit {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-align: center;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #00d67d;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid #0c8f3f;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
  transition: box-shadow 160ms ease, filter 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  filter: brightness(0.96);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.32);
}

.whatsapp-icon {
  display: block;
  width: 44px;
  height: 44px;
}

.whatsapp-icon path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.whatsapp-icon path:last-child {
  fill: currentColor;
}

/* Tema comercial: leitura clara, contraste controlado e captação em azul profundo */
body {
  background: var(--bg-paper);
  color: var(--text-dark);
}

.site-header,
.primary-nav,
.catalog-intro,
.contact-hero,
.filter-bar {
  background: var(--bg-paper);
}

.site-header {
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.06);
}

.top-bar,
.site-footer {
  background: var(--logo-navy-deep);
}

.section,
.section-benefits,
.section-catalog-gallery,
.section-pillars {
  background: var(--bg-paper);
}

.section-muted,
.section-authority {
  background: var(--bg-muted);
}

.catalog-notice,
.product-card,
.benefit-card,
.principle-card,
.history-copy,
.structure-item,
.gallery-card,
.timeline-content,
.timeline-year {
  border-color: var(--border-color);
  background: var(--bg-paper);
}

.catalog-notice,
.history-copy,
.timeline-content {
  box-shadow: var(--shadow-soft);
}

.product-card,
.gallery-card,
.benefit-card,
.principle-card,
.form-panel {
  box-shadow: var(--shadow-soft);
}

.section-heading p:not(.eyebrow),
.catalog-notice p,
.product-card-body p,
.benefits-list li,
.authority-lead,
.summary-copy p:not(.eyebrow),
.timeline-content p,
.pillar-item p,
.form-panel-header p,
.contact-info > p:not(.eyebrow),
.contact-cta-copy span,
.site-footer,
.site-footer address,
.footer-links a,
.site-footer address a {
  color: var(--text-light);
}

.top-bar p,
.site-footer h2,
.site-footer .footer-links a,
.site-footer address a {
  color: #ffffff;
}

.btn,
.primary-nav a,
.filter-button,
.product-category,
.eyebrow,
.contact-cta-copy span,
.form-field label {
  font-family: var(--font-body);
}

.btn,
.primary-nav a,
.filter-button,
.product-category,
.eyebrow {
  letter-spacing: 0.14em;
}

.btn-gold,
.contact-cta-strong,
.form-submit {
  border: 1px solid var(--logo-gold);
  background: var(--logo-gold);
  color: #ffffff;
  box-shadow: none;
}

.btn-gold:hover,
.btn-gold:focus-visible,
.contact-cta-strong:hover,
.contact-cta-strong:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
  background: var(--logo-gold-dark);
  border-color: var(--logo-gold-dark);
  color: #ffffff;
}

.nav-cta {
  min-height: 48px;
  padding: 0 34px;
  margin: 8px auto 0;
  border: 1px solid var(--logo-gold);
  border-radius: 2px;
  background: transparent;
  color: var(--logo-gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  box-shadow: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--logo-gold);
  background: var(--logo-gold);
  color: #ffffff;
}

.contact-section {
  background: var(--logo-navy-deep);
}

.contact-section .form-panel {
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: var(--logo-navy);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.contact-section .contact-info {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.contact-section .form-panel h2,
.contact-section .contact-info h2,
.contact-section .contact-cta-copy strong,
.contact-section .form-field label,
.contact-section .form-status,
.contact-section .eyebrow {
  color: #ffffff;
}

.contact-section .form-panel h2 {
  font-weight: 300;
  letter-spacing: -0.035em;
}

.contact-section .form-panel-header {
  margin-bottom: 30px;
}

.contact-section .form-panel-header p,
.contact-section .contact-info > p:not(.eyebrow),
.contact-section .contact-cta-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section .contact-info,
.contact-section .contact-cta-band {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.contact-section .lead-form {
  gap: 24px;
  margin-top: 0;
}

.contact-section .form-field {
  gap: 7px;
}

.contact-section .form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.contact-section .form-field input,
.contact-section .form-field textarea {
  min-height: 48px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.contact-section .form-field textarea {
  min-height: 132px;
  padding: 14px 0;
  resize: vertical;
}

.contact-section .form-field input::placeholder,
.contact-section .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-section .form-field input:focus,
.contact-section .form-field textarea:focus {
  border-color: var(--logo-gold);
  box-shadow: none;
}

.contact-section .form-submit {
  min-height: 54px;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  justify-self: stretch;
  border: 1px solid var(--logo-gold);
  border-radius: 0;
  background: var(--logo-gold);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: none;
}

.contact-section .form-submit:hover,
.contact-section .form-submit:focus-visible {
  border-color: var(--logo-gold-dark);
  background: var(--logo-gold-dark);
  color: #ffffff;
}

.representative-section {
  padding: 82px 0;
  background: var(--bg-paper);
  border-top: 1px solid var(--border-color);
}

.representative-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.representative-grid h2 {
  max-width: 620px;
  color: var(--logo-navy);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
}

.representative-copy {
  display: grid;
  gap: 18px;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.85;
}

.features-section {
  padding: 110px 0;
  background: var(--bg-paper);
  color: var(--text-dark);
}

.features-container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.features-header {
  max-width: 740px;
  margin: 0 auto 70px;
  text-align: center;
}

.features-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--logo-gold);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
}

.features-title {
  color: var(--logo-navy);
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
}

.features-desc {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  gap: 28px;
}

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 42px 30px 38px;
  text-align: center;
  border: 1px solid var(--border-color);
  background: var(--bg-paper);
  box-shadow: 0 10px 26px rgba(11, 27, 43, 0.035);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--logo-gold);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(168, 123, 45, 0.34);
  box-shadow: 0 18px 34px rgba(11, 27, 43, 0.07);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  width: 100%;
}

.feature-card h3 {
  color: var(--logo-navy);
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.08;
}

.feature-card p {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.78;
}

.service-flow-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(168, 123, 45, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-muted) 100%);
  background-size: 64px 100%, auto;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.service-flow-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.service-flow-copy {
  max-width: 640px;
}

.service-flow-copy h2 {
  max-width: 620px;
  color: var(--logo-navy);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.service-flow-copy p {
  max-width: 600px;
  margin-top: 22px;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.85;
}

.service-flow-steps {
  display: grid;
  gap: 16px;
}

.service-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 6px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.84);
}

.service-step span {
  grid-row: span 2;
  color: var(--logo-gold);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.service-step h3 {
  color: var(--logo-navy);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-step p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

.bestsellers-section {
  padding: 100px 0;
  background: var(--bg-paper);
  border-top: 1px solid var(--border-color);
}

.bestsellers-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.bestsellers-title {
  color: var(--logo-navy);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1;
}

.bestsellers-header p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

.bestsellers-grid {
  display: grid;
  gap: 30px;
}

.product-highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-highlight-card:hover,
.product-highlight-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(168, 123, 45, 0.68);
  box-shadow: 0 20px 40px rgba(11, 27, 43, 0.06);
}

.highlight-img-wrapper {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--bg-muted);
}

.highlight-img-wrapper img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: brightness(0.96) contrast(1.04);
  transition: transform 420ms ease;
}

.product-highlight-card:hover .highlight-img-wrapper img,
.product-highlight-card:focus-within .highlight-img-wrapper img {
  transform: scale(1.06);
}

.highlight-category {
  display: block;
  margin-bottom: 8px;
  color: var(--logo-gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlight-title {
  margin-bottom: 10px;
  color: var(--logo-navy);
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
}

.highlight-desc {
  flex-grow: 1;
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
}

.highlight-link {
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--logo-gold);
  color: var(--logo-navy);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.highlight-link:hover,
.highlight-link:focus-visible {
  color: var(--logo-gold);
}

.bestsellers-action {
  margin-top: 60px;
  text-align: center;
}

.btn-outline-gold {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  border: 1px solid var(--logo-gold);
  border-radius: 2px;
  color: var(--logo-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background: var(--logo-gold);
  color: #ffffff;
}

.hero-home {
  min-height: calc(100vh - var(--header-height));
}

.hero-home .hero-overlay {
  background: linear-gradient(180deg, rgba(11, 27, 43, 0.68) 0%, rgba(7, 17, 29, 0.86) 100%);
}

.home-refined-hero-content {
  max-width: 920px;
  padding-block: 94px;
  text-align: center;
}

.home-refined-hero-content .eyebrow {
  color: var(--logo-gold);
}

.hero-home-content.home-refined-hero-content h1 {
  max-width: 900px;
  margin-inline: auto;
  color: #ffffff;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero-home-content.home-refined-hero-content .hero-lead {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 300;
  line-height: 1.85;
}

.hero-home-content.home-refined-hero-content .hero-actions {
  justify-content: center;
  margin-top: 38px;
}

.hero-home-content.home-refined-hero-content .btn-gold,
.hero-home-content.home-refined-hero-content .btn-light {
  min-height: 52px;
  padding: 0 32px;
  border-radius: 2px;
  letter-spacing: 0.14em;
}

.hero-home-content.home-refined-hero-content .btn-gold {
  border-color: var(--logo-gold);
  background: transparent;
  color: var(--logo-gold);
}

.hero-home-content.home-refined-hero-content .btn-gold:hover,
.hero-home-content.home-refined-hero-content .btn-gold:focus-visible {
  background: var(--logo-gold);
  color: #ffffff;
}

.capture-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--logo-navy-deep);
  color: #ffffff;
}

.capture-section::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: min(600px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(168, 123, 45, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.capture-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.capture-text {
  max-width: 650px;
}

.capture-text h2 {
  max-width: 650px;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.2vw, 4.35rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.capture-text p {
  max-width: 520px;
  margin-top: 22px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.capture-form {
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid var(--logo-gold);
  background: var(--logo-navy);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #ffffff;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 180ms ease;
}

.form-control:focus {
  border-bottom-color: var(--logo-gold);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.btn-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
  border: 1px solid var(--logo-gold);
  background: var(--logo-gold);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.btn-submit:hover,
.btn-submit:focus-visible {
  border-color: var(--logo-gold-dark);
  background: var(--logo-gold-dark);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--logo-gold);
  padding-bottom: 3px;
  color: var(--logo-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.btn-emergency:hover,
.btn-emergency:focus-visible {
  border-bottom-color: #ffffff;
  color: #ffffff;
}

.capture-privacy-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  text-align: center;
}

.company-hero {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11, 27, 43, 0.62) 0%, rgba(7, 17, 29, 0.88) 100%),
    url("../../img/Outras img/WhatsApp Image 2026-04-28 at 14.17.49.jpeg") center / cover no-repeat;
}

.company-hero-content {
  padding-block: 88px;
}

.company-hero h1 {
  color: #ffffff;
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.company-history-section,
.company-structure-section {
  padding: 100px 0;
  background: var(--bg-paper);
}

.company-history-grid {
  display: grid;
  gap: 54px;
  align-items: start;
}

.company-history-text h2 {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--logo-navy);
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
}

.company-history-text p {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.company-timeline-panel {
  display: grid;
  gap: 20px;
}

.company-timeline-card {
  position: relative;
  padding: 34px 34px 32px;
  border: 1px solid var(--border-color);
  background: var(--bg-muted);
}

.company-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--logo-gold);
}

.company-timeline-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--logo-gold-dark);
  font-family: var(--font-title);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.company-timeline-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--logo-navy);
  font-weight: 600;
}

.company-timeline-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
}

.company-principles-section {
  padding: 96px 0;
  background: var(--logo-navy-deep);
  color: #ffffff;
}

.company-principles-grid {
  display: grid;
  gap: 34px;
}

.company-principle-item h2 {
  margin-bottom: 14px;
  color: var(--logo-gold);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 400;
}

.company-principle-item p,
.company-values-list {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.company-values-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.company-values-list li + li {
  margin-top: 10px;
}

.company-values-list strong {
  color: var(--logo-gold);
  font-weight: 600;
}

.company-structure-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.company-structure-heading h2 {
  color: var(--logo-navy);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 300;
}

.company-structure-heading p {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
}

.company-structure-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.company-structure-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--logo-navy);
}

.company-structure-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(18%);
  transition: transform 500ms ease, filter 500ms ease;
}

.company-structure-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.company-structure-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: rgba(7, 17, 29, 0.84);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-hero {
  padding: 112px 0 58px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.catalog-hero h1 {
  color: var(--logo-navy);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.catalog-hero p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.catalog-section {
  padding: 42px 0 100px;
  background: var(--bg-paper);
}

.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.catalog-filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-filter-button:hover,
.catalog-filter-button:focus-visible,
.catalog-filter-button.active {
  border-color: var(--logo-navy);
  background: var(--logo-navy);
  color: #ffffff;
  transform: translateY(-1px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.catalog-grid .catalog-product-card {
  display: flex;
  min-height: 100%;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.catalog-grid .catalog-product-card[hidden] {
  display: none !important;
}

.catalog-grid .catalog-product-card:hover,
.catalog-grid .catalog-product-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(168, 123, 45, 0.68);
  box-shadow: 0 18px 34px rgba(11, 27, 43, 0.06);
}

.product-img-wrapper {
  width: 100%;
  height: 270px;
  display: grid;
  place-items: center;
  padding: 18px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #fbfbfb;
}

.product-img-wrapper img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.catalog-grid .catalog-product-card:hover .product-img-wrapper img,
.catalog-grid .catalog-product-card:focus-within .product-img-wrapper img {
  transform: scale(1.05);
}

.catalog-grid .catalog-product-card.product-scale-small .product-img-wrapper img {
  transform: scale(0.84);
}

.catalog-grid .catalog-product-card.product-scale-small:hover .product-img-wrapper img,
.catalog-grid .catalog-product-card.product-scale-small:focus-within .product-img-wrapper img {
  transform: scale(0.88);
}

.catalog-grid .catalog-product-card.product-flip-horizontal .product-img-wrapper img {
  transform: scaleX(-1);
}

.catalog-grid .catalog-product-card.product-flip-horizontal:hover .product-img-wrapper img,
.catalog-grid .catalog-product-card.product-flip-horizontal:focus-within .product-img-wrapper img {
  transform: scaleX(-1) scale(1.05);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.catalog-grid .product-category {
  margin-bottom: 7px;
  color: var(--logo-gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-title {
  margin: 0 0 18px;
  color: var(--logo-navy);
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
}

.btn-quote {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--logo-navy);
  background: transparent;
  color: var(--logo-navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.catalog-grid .catalog-product-card:hover .btn-quote,
.catalog-grid .catalog-product-card:focus-within .btn-quote {
  border-color: var(--logo-navy);
  background: var(--logo-navy);
  color: #ffffff;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 29, 0.76);
  backdrop-filter: blur(5px);
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: min(90vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  overflow: auto;
  border: 1px solid rgba(168, 123, 45, 0.28);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.94);
  color: var(--logo-navy);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  border-color: var(--logo-gold);
  color: var(--logo-gold-dark);
}

.product-modal-media {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(11, 27, 43, 0.035), transparent 32%),
    linear-gradient(315deg, rgba(168, 123, 45, 0.055), transparent 34%),
    #fbfbfb;
}

.product-modal-media img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.product-modal-media img.is-flipped {
  transform: scaleX(-1);
}

.product-modal-media img.is-small-scale {
  transform: scale(0.86);
}

.product-modal-media img.is-flipped.is-small-scale {
  transform: scaleX(-1) scale(0.86);
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  border-left: 1px solid var(--border-color);
  background:
    linear-gradient(180deg, rgba(248, 249, 250, 0.7) 0%, #ffffff 100%);
}

.product-modal-category {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal-content h2 {
  color: var(--logo-navy);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.25vw, 3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-modal-content p {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 0.96rem;
  line-height: 1.75;
}

.product-modal-content p[hidden] {
  display: none;
}

.product-modal-specs {
  display: grid;
  gap: 6px;
  margin: 20px 0 30px;
  padding: 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.5;
  list-style: none;
}

.product-modal-specs li {
  padding-left: 0;
}

.product-modal-specs li::before {
  display: none;
}

.product-modal-specs strong {
  color: var(--logo-navy);
  font-style: italic;
  font-weight: 700;
}

.product-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid var(--logo-navy);
  background: var(--logo-navy);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.product-modal-cta:hover,
.product-modal-cta:focus-visible {
  border-color: var(--logo-gold);
  background: var(--logo-gold);
  color: #ffffff;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bestsellers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }

  .service-flow-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
  }

  .representative-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 72px;
  }

  .capture-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .company-history-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .company-principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
  }

  .company-structure-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .company-hero {
    min-height: 48vh;
  }

  .company-hero-content {
    padding-block: 64px;
  }

  .company-history-section,
  .company-principles-section,
  .company-structure-section {
    padding: 72px 0;
  }

  .service-flow-section,
  .representative-section {
    padding: 68px 0;
  }

  .service-flow-copy h2,
  .representative-grid h2 {
    font-size: 2.45rem;
  }

  .service-step {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 20px;
  }

  .service-step span {
    font-size: 1.65rem;
  }

  .company-timeline-card {
    padding: 28px 26px;
  }

  .catalog-hero {
    padding: 78px 0 42px;
  }

  .catalog-section {
    padding: 30px 0 72px;
  }

  .catalog-filter-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    width: 100%;
    padding: 0 22px 10px 0;
    cursor: grab;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .catalog-filter-bar.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .catalog-filter-button {
    min-height: auto;
    min-width: max-content;
    padding: 8px 0;
    border: 0;
    color: var(--logo-navy);
    background: transparent;
  }

  .catalog-filter-button:hover,
  .catalog-filter-button:focus-visible,
  .catalog-filter-button.active {
    background: transparent;
    color: var(--logo-gold);
    transform: none;
  }

  .product-img-wrapper {
    height: 235px;
  }

  .product-modal {
    align-items: end;
    padding: 14px;
  }

  .product-modal-panel {
    width: 100%;
    max-height: 88vh;
    grid-template-columns: 1fr;
  }

  .product-modal-media {
    min-height: 300px;
    padding: 42px 18px 18px;
  }

  .product-modal-media img {
    max-height: 320px;
  }

  .product-modal-content {
    padding: 28px 22px 24px;
    border-left: 0;
    border-top: 1px solid var(--border-color);
  }

  .product-modal-content h2 {
    font-size: 2.45rem;
  }

  .home-refined-hero-content {
    padding-block: 72px;
  }

  .home-refined-hero-content .hero-actions {
    align-items: center;
  }

  .capture-section {
    padding: 72px 0;
  }

  .bestsellers-section {
    padding: 72px 0;
  }

  .bestsellers-header {
    margin-bottom: 38px;
  }

  .highlight-img-wrapper {
    height: 230px;
  }
}

@media (min-width: 640px) {
  .section-divider {
    height: 88px;
  }

  .section-divider::before {
    width: min(1180px, calc(100% - 36px));
    height: 58px;
  }

  .section-divider::after {
    width: 72px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .catalog-intro h1,
  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-hero h1 {
    font-size: 2.15rem;
    white-space: nowrap;
  }

  .hero-home-content h1 {
    font-size: 4.2rem;
  }

  .hero-content > p.hero-lead {
    font-size: 1.04rem;
  }

  .benefits-copy {
    max-width: 680px;
  }

  .catalog-gallery-track {
    grid-auto-columns: calc(50% - 10px);
  }

  .showcase-item {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
  }

  .showcase-thumb {
    min-height: 150px;
  }

  .showcase-copy {
    margin-left: 28px;
    padding: 26px 24px 24px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
  }

  .featured-grid,
  .product-grid,
  .benefit-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-field.full,
  .form-submit,
  .form-status {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  :root {
    --header-height: 124px;
  }

  .header-inner {
    min-height: 90px;
  }

  .header-inner.container {
    width: min(100% - 48px, 1320px);
  }

  .brand-logo {
    height: 74px;
    max-width: 190px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: auto;
  }

  .nav-cta {
    width: auto;
  }

  .primary-nav a.nav-cta {
    min-height: 50px;
    padding: 0 38px;
    margin-left: clamp(28px, 4vw, 68px);
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .hero-content {
    padding-block: 96px;
  }

  .hero-home-content {
    padding-block: 110px 94px;
  }

  .hero-home {
    background-position: 82% center;
  }

  .section-benefits {
    padding: 100px 0;
  }

  .filter-actions {
    gap: 22px;
  }

  .filter-button {
    padding: 10px 0;
    font-size: 0.98rem;
  }

  .benefits-copy {
    max-width: 680px;
  }

  .benefits-copy h2 {
    font-size: clamp(3.2rem, 4vw, 4.6rem);
  }

  .benefits-list {
    gap: 24px;
  }

  .catalog-gallery-wrap {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 18px;
  }

  .catalog-gallery-track {
    grid-auto-columns: calc(25% - 14px);
    gap: 20px;
  }

  .showcase-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .showcase-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: start;
  }

  .showcase-lead {
    padding-right: 8px;
  }

  .showcase-media {
    min-height: 470px;
  }

  .showcase-copy {
    width: min(82%, 540px);
    margin-top: -68px;
    margin-left: 34px;
    padding: 30px 28px 28px;
  }

  .showcase-list {
    gap: 18px;
  }

  .showcase-item {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    padding: 0 0 22px;
  }

  .showcase-item-copy h3 {
    font-size: 1.34rem;
  }

  .showcase-item + .showcase-item {
    padding-top: 22px;
  }

  .pillars-intro {
    margin-bottom: 64px;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
  }

  .hero-home-content h1 {
    font-size: 5.1rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1.22rem;
  }

  .hero-content > p.hero-lead {
    max-width: 600px;
    font-size: 1.10rem;
  }

  .company-summary {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

  .section-authority .company-summary {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
  }

  .authority-visual {
    min-height: 470px;
  }

  .authority-card-back {
    left: 38%;
    width: 38%;
    height: 352px;
  }

  .authority-card-main {
    top: 44px;
    width: 52%;
    height: 314px;
  }

  .authority-card-small {
    width: 27%;
    height: 102px;
  }

  .authority-logo-tile {
    right: 4%;
    width: 88px;
    height: 88px;
  }

  .summary-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 60px 32px 32px;
  }

  .summary-panel div:last-child {
    grid-column: 1 / -1;
  }

  .summary-panel span {
    max-width: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 380px);
    grid-template-areas:
      "eyebrow cta"
      "title cta"
      "text cta";
    column-gap: 36px;
    row-gap: 8px;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 0;
    border-top: 1px solid #e4dccf;
    border-bottom: 0;
  }

  .contact-info .eyebrow {
    grid-area: eyebrow;
  }

  .contact-info h2 {
    grid-area: title;
    max-width: none;
    margin-bottom: 0;
  }

  .contact-info > p:not(.eyebrow) {
    grid-area: text;
    max-width: 760px;
  }

  .contact-cta-band {
    grid-area: cta;
    grid-template-columns: auto;
    justify-items: start;
    gap: 16px;
    margin-top: 0;
    padding: 0;
    border-top: 0;
  }

  .form-panel h2 {
    max-width: none;
    white-space: nowrap;
  }

  .form-panel {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
  }

  .form-panel-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
  }

  .form-panel-header p {
    white-space: nowrap;
    text-align: right;
  }

  .summary-copy {
    padding-right: 24px;
  }

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

  .structure-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .structure-item.wide {
    grid-column: span 2;
  }

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

}

@media (min-width: 1080px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1.35rem;
  }

  .hero-home-content h1 {
    max-width: 980px;
    font-size: 5.9rem;
  }

  .hero-content > p.hero-lead {
    font-size: 1.14rem;
  }

  .benefits-copy {
    max-width: 720px;
  }

  .catalog-gallery-heading h2 {
    font-size: 3.15rem;
    white-space: nowrap;
  }

  .catalog-intro h1,
  .contact-hero h1 {
    font-size: 4rem;
  }

  .contact-hero {
    padding: 32px 0 22px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
    white-space: nowrap;
  }

  .contact-info h2 {
    max-width: none;
  }

  .section-authority .summary-copy {
    padding-right: 10px;
  }

  .section-authority .summary-copy h2 {
    font-size: 3.7rem;
  }

  .authority-visual {
    min-height: 500px;
  }

  .authority-card-back {
    height: 376px;
  }

  .authority-card-main {
    height: 330px;
  }

  .summary-copy {
    padding-right: 34px;
  }

  .summary-panel {
    padding: 62px 36px 36px;
  }

  .form-panel h2 {
    max-width: none;
    font-size: 2.8rem;
    line-height: 0.98;
  }

  .contact-info {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 430px);
  }

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

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
