:root {
  --brown-950: #2b1511;
  --brown-900: #3c1e18;
  --brown-800: #512822;
  --brown-700: #6f3a2b;
  --copper: #9b6039;
  --sand: #d9c2a8;
  --cream: #f3eee8;
  --paper: #fbfaf8;
  --ink: #181614;
  --muted: #675f59;
  --line: rgba(43, 21, 17, 0.14);
  --white: #fff;
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brown-950);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-top: 6px solid var(--brown-800);
  border-bottom: 1px solid rgba(43, 21, 17, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: calc(var(--header-height) - 6px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
}

.language-button {
  min-width: 28px;
  padding: 5px 4px;
  color: var(--muted);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.language-button.is-active {
  color: var(--brown-800);
  border-color: var(--brown-800);
}

.header-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--brown-800);
  border: 1px solid var(--brown-800);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--brown-800);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: stretch;
  padding: calc(var(--header-height) + 64px) 0 0;
  color: var(--white);
  overflow: hidden;
  background: var(--brown-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-exportacao-generated.png");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.025);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 13, 10, 0.94) 0%, rgba(26, 13, 10, 0.76) 46%, rgba(26, 13, 10, 0.22) 78%, rgba(26, 13, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(26, 13, 10, 0.68), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  width: min(735px, 70%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sand);
}

.hero h1,
.section-intro h2,
.feature-inner h2,
.capacity-heading h2,
.quote-intro h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6.5vw, 82px);
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brown-800);
  border-color: var(--brown-800);
}

.button-primary:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--brown-950);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-whatsapp {
  gap: 10px;
  color: var(--white);
  background: #237c52;
  border-color: #237c52;
}

.button-whatsapp:hover {
  color: var(--white);
  background: #1b6845;
  border-color: #1b6845;
}

.button-dark {
  color: var(--white);
  background: var(--brown-950);
  border-color: var(--brown-950);
}

.button-dark:hover {
  background: var(--brown-700);
  border-color: var(--brown-700);
}

.button-outline {
  color: var(--brown-800);
  background: transparent;
  border-color: var(--brown-800);
}

.button-outline:hover {
  color: var(--white);
  background: var(--brown-800);
}

.hero-proof {
  position: static;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.proof-item span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 124px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom right;
}

.section {
  padding: 126px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.section-intro h2,
.feature-inner h2,
.capacity-heading h2,
.quote-intro h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.section-intro > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd4ca;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.04);
}

.product-copy {
  padding: 24px 0 0;
  border-top: 1px solid transparent;
}

.product-copy h3 {
  margin: 0 0 10px;
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--brown-800);
  color: var(--brown-800);
  font-size: 13px;
  font-weight: 800;
}

.feature-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #c9b8a6;
}

.feature-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-content {
  display: flex;
  align-items: center;
  padding: 90px max(48px, 8vw);
  background: var(--cream);
}

.export-feature .feature-content {
  background: #e8dfd5;
}

.feature-inner {
  width: min(540px, 100%);
}

.feature-lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  display: flex;
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.check-list li > span:first-child {
  color: var(--copper);
}

.visual-label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, 70%);
  padding: 26px;
  color: var(--white);
  background: var(--brown-800);
}

.visual-label span,
.dimension-note span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label strong {
  font-family: "Archivo", sans-serif;
  font-size: 28px;
}

.kit-feature .feature-content {
  justify-content: flex-end;
  background: var(--paper);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-grid > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid strong {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.spec-grid span {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
}

.dimension-note {
  position: absolute;
  bottom: 34px;
  left: 34px;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(43, 21, 17, 0.92);
}

.dimension-note strong {
  font-family: "Archivo", sans-serif;
  font-size: 30px;
}

@media (min-width: 961px) {
  .kit-feature .feature-content {
    padding-block: 58px;
  }

  .kit-feature .spec-grid {
    margin-block: 30px 34px;
  }

  .kit-feature .spec-grid > div {
    min-height: 82px;
    padding-block: 14px;
  }
}

.process-section {
  background: #f6f1eb;
  border-top: 1px solid var(--line);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 90px;
  align-items: end;
}

.process-heading h2,
.faq-intro h2 {
  margin-top: 14px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.process-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-step {
  position: relative;
  min-height: 255px;
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 3px;
  background: var(--copper);
}

.process-number {
  display: inline-flex;
  min-width: 44px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  background: #f6eee7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin: 42px 0 12px;
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capacity-section {
  position: relative;
  padding: 128px 0 116px;
  color: var(--white);
  background: var(--brown-950);
  overflow: hidden;
}

.capacity-texture {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.18) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255,255,255,.12) 50%, transparent 50.2%);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.capacity-inner {
  position: relative;
}

.capacity-heading {
  max-width: 780px;
}

.capacity-numbers {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.capacity-number {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.capacity-number:last-child {
  border-right: 0;
}

.capacity-number strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.065em;
  line-height: 1;
}

.capacity-number span {
  margin-top: 11px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technical-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.technical-strip span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.faq-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--brown-800);
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 690px;
  margin: -4px 52px 28px 0;
  color: var(--muted);
  font-size: 15px;
}

.quote-section {
  background: var(--cream);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 92px;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.quote-intro > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.quote-contact {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.quote-contact > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.quote-contact a {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: #237c52;
  border: 1px solid #237c52;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(35, 124, 82, 0.18);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.quote-contact a:hover {
  background: #1b6845;
  border-color: #1b6845;
  transform: translateY(-2px);
}

.quote-form {
  padding: 46px;
  background: var(--white);
  border: 1px solid rgba(43, 21, 17, 0.06);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(60, 30, 24, 0.1);
}

.form-row {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
}

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

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

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.quote-form label > span:first-child {
  color: var(--brown-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--ink);
  background: #f3eee8;
  border: 1px solid rgba(43, 21, 17, 0.09);
  border-radius: 12px;
  box-shadow: inset 0 2px 6px rgba(43, 21, 17, 0.09), inset 0 -1px 0 rgba(255, 255, 255, 0.8);
  outline: 0;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form select {
  padding-right: 40px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #887970;
  opacity: 1;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--copper);
  background: #fffdfb;
  box-shadow: inset 0 2px 5px rgba(43, 21, 17, 0.07), 0 0 0 3px rgba(164, 92, 47, 0.14);
}

.file-upload {
  position: relative;
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--ink);
  background: #f3eee8;
  border: 1px dashed rgba(86, 45, 35, 0.32);
  border-radius: 16px;
  box-shadow: inset 0 2px 7px rgba(43, 21, 17, 0.08);
  cursor: pointer;
  text-transform: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.file-upload:hover,
.file-upload.is-dragging {
  background: #fffaf5;
  border-color: var(--copper);
  box-shadow: inset 0 2px 6px rgba(43, 21, 17, 0.06), 0 0 0 3px rgba(164, 92, 47, 0.1);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload:has(input:focus-visible) {
  border-color: var(--copper);
  outline: 3px solid rgba(164, 92, 47, 0.18);
  outline-offset: 2px;
}

.file-upload-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--copper);
  background: var(--white);
  border: 1px solid rgba(86, 45, 35, 0.1);
  border-radius: 12px;
}

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

.file-upload-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-upload-copy strong {
  font-size: 14px;
}

.file-upload-copy small {
  color: var(--muted);
  font-size: 12px;
}

.file-selected {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px 9px 14px;
  color: var(--brown-800);
  background: #f7f2ec;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.file-field + .file-selected {
  margin-top: -12px;
}

.file-selected[hidden] {
  display: none;
}

.file-selected button {
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--brown-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.quote-form label.has-error input,
.quote-form label.has-error select,
.quote-form label.has-error textarea,
.quote-form label.has-error .file-upload {
  border-color: #a83c31;
}

.field-error {
  color: #943127;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form .button {
  border-radius: 12px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.form-footer p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--brown-700);
  font-size: 13px;
  font-weight: 700;
}

.form-success {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
  color: #173c2b;
  background: #edf6f0;
  border: 1px solid rgba(35, 124, 82, 0.2);
  border-radius: 16px;
  outline: 0;
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #237c52;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
}

.form-success strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 17px;
}

.form-success p {
  margin: 5px 0 12px;
  color: #466454;
  font-size: 12px;
}

.success-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b6845;
  font-size: 13px;
  font-weight: 800;
}

.success-whatsapp .whatsapp-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer {
  padding: 78px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--brown-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 0.7fr;
  gap: 48px;
}

.footer-brand img {
  width: 185px;
  padding: 10px 12px;
  background: #fff;
}

.footer-brand p,
.site-footer p {
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-label {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.footer-note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  text-align: right;
}

.footer-note a {
  color: var(--white);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #237c52;
  border-radius: 50%;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

.whatsapp-float .whatsapp-icon {
  width: 25px;
  height: 25px;
}

:focus-visible {
  outline: 3px solid #c98b50;
  outline-offset: 3px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal="up"] {
  transform: translate3d(0, 52px, 0);
}

.reveal-ready [data-reveal="right"] {
  transform: translate3d(-52px, 0, 0);
}

.reveal-ready [data-reveal="left"] {
  transform: translate3d(52px, 0, 0);
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (max-width: 700px) {
  .reveal-ready [data-reveal="right"],
  .reveal-ready [data-reveal="left"] {
    transform: translate3d(0, 36px, 0);
  }

  .reveal-ready [data-reveal].is-revealed {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: min(760px, 82%);
  }

  .feature-content {
    padding-inline: 58px;
  }

  .quote-layout {
    gap: 58px;
  }

  .quote-form {
    padding: 38px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 860px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .brand img {
    width: 160px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    width: min(380px, 90vw);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 28px;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: -18px 24px 50px rgba(43, 21, 17, 0.14);
    transform: translateX(105%);
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .menu-open .main-nav {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 740px;
  }

  .hero-copy {
    width: 90%;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-scroll {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-grid {
    gap: 16px;
  }

  .feature-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 560px;
  }

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

  .kit-feature .feature-content {
    order: 2;
  }

  .kit-feature .feature-visual {
    order: 1;
  }

  .capacity-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .capacity-number:nth-child(2) {
    border-right: 0;
  }

  .capacity-number:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .process-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .faq-intro {
    position: static;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
    max-width: 700px;
  }

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

  .footer-note {
    align-items: flex-start;
    gap: 24px;
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 76px;
  }

  .site-header {
    border-top-width: 5px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand img {
    width: 138px;
  }

  .header-actions {
    gap: 9px;
    margin-left: auto;
  }

  .language-button {
    min-width: 23px;
    font-size: 9px;
  }

  .hero {
    min-height: 810px;
    align-items: stretch;
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(26, 13, 10, 0.94), rgba(26, 13, 10, 0.6));
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 56px;
  }

  .proof-item {
    min-height: 108px;
    padding-inline: 12px;
  }

  .proof-item strong {
    font-size: 18px;
  }

  .section {
    padding: 86px 0;
  }

  .section-intro h2,
  .feature-inner h2,
  .capacity-heading h2,
  .quote-intro h2,
  .process-heading h2,
  .faq-intro h2 {
    font-size: 38px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-link-row {
    justify-content: flex-start;
  }

  .feature-visual {
    min-height: 430px;
  }

  .feature-content {
    min-height: 0;
    padding: 74px 20px;
  }

  .check-list,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .process-step,
  .process-step:nth-child(2) {
    min-height: 0;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 28px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 16px;
  }

  .capacity-section {
    padding: 92px 0 82px;
  }

  .capacity-numbers {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .capacity-number,
  .capacity-number:nth-child(2),
  .capacity-number:last-child {
    grid-column: auto;
    min-height: 148px;
    padding-inline: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .capacity-number:last-child {
    border-bottom: 0;
  }

  .capacity-number strong {
    font-size: 60px;
  }

  .quote-form {
    padding: 28px 20px;
  }

  .two-columns,
  .three-columns {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

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

  .whatsapp-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}



/* Production integration */
body.catalogo-exportacao-page .breadcrumbs { display: none !important; }
body.catalogo-exportacao-page article { overflow: hidden; }
body.catalogo-exportacao-page article > .fz-catalog { font-family: "Inter", "Montserrat", sans-serif; }
body.catalogo-exportacao-page article > .fz-catalog,
body.catalogo-exportacao-page article > .fz-catalog * { box-sizing: border-box; }
body.catalogo-exportacao-page .fz-catalog a { text-decoration: none; }
body.catalogo-exportacao-page .fz-catalog img { display: block; max-width: 100%; }
body.catalogo-exportacao-page .fz-catalog .hero { padding-top: 80px; }
body.catalogo-exportacao-page .fz-catalog .hero-media { background-image: var(--catalog-hero-image); }
body.catalogo-exportacao-page .fz-catalog .capacity-texture { opacity: .08; }
body.catalogo-exportacao-page .fz-catalog .quote-form.is-submitting { opacity: .72; pointer-events: none; }
body.catalogo-exportacao-page .fz-catalog .form-status.is-error { color: #9c2f24; }
body.catalogo-exportacao-page .fz-catalog .form-status.is-success { color: #247a50; }
@media (max-width: 960px) {
  body.catalogo-exportacao-page .fz-catalog .hero { padding-top: 64px; }
}




/* Current-site heading specificity */
body.catalogo-exportacao-page .fz-catalog .hero h1 {
  color: #fff !important;
}

