:root {
  --bg: #f3efe6;
  --bg-soft: #faf7f1;
  --surface: #ffffff;
  --surface-alt: #f7f2e8;
  --ink: #16130f;
  --ink-soft: #5d554a;
  --line: rgba(22, 19, 15, 0.1);
  --line-strong: rgba(22, 19, 15, 0.16);
  --yellow: #f2c300;
  --yellow-deep: #d7a700;
  --yellow-soft: rgba(242, 195, 0, 0.14);
  --red: #9e1d14;
  --shadow: 0 24px 60px rgba(31, 23, 15, 0.12);
  --shadow-soft: 0 14px 34px rgba(31, 23, 15, 0.08);
  --container: 1520px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: #f6efe3;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 29;
  background: #080808;
}

body.menu-open::before,
body.menu-open .ambient-glow {
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 19, 15, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 19, 15, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 29, 20, 0.1), transparent 22%),
    radial-gradient(circle at 0% 18%, rgba(242, 195, 0, 0.18), transparent 26%);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 10, 8, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand img {
  display: block;
  height: 60px;
  width: auto;
  border: 2px solid #fff;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(21, 18, 14, 0.96), rgba(11, 10, 8, 0.98));
  box-shadow: 0 18px 36px rgba(15, 12, 9, 0.28);
  cursor: pointer;
  color: var(--yellow);
}

.menu-toggle i {
  position: absolute;
  font-size: 1.3rem;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.menu-toggle .fa-bars {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle .fa-xmark {
  opacity: 0;
  transform: scale(0.7);
}

.menu-toggle.is-open .fa-bars {
  opacity: 0;
  transform: scale(0.7);
}

.menu-toggle.is-open .fa-xmark {
  opacity: 1;
  transform: scale(1);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a,
.header-whatsapp,
.section-whatsapp,
.whatsapp-card,
.privacy-policy__back {
  text-decoration: none;
  font-weight: 700;
}

.nav a {
  position: relative;
  color: rgba(255, 248, 236, 0.92);
  font-size: 0.95rem;
}

.nav a i {
  display: none;
  font-size: 1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-whatsapp,
.section-whatsapp,
.whatsapp-card,
.privacy-policy__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #14110d;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  box-shadow: 0 18px 38px rgba(242, 195, 0, 0.24);
  transition: transform 0.24s ease, filter 0.24s ease;
}

.header-whatsapp {
  min-height: 50px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible,
.section-whatsapp:hover,
.section-whatsapp:focus-visible,
.whatsapp-card:hover,
.whatsapp-card:focus-visible,
.privacy-policy__back:hover,
.privacy-policy__back:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.header-whatsapp svg,
.whatsapp-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero,
.authority,
.applications,
.logistics,
.contact,
.page-section,
.privacy-policy {
  padding: 80px 0;
  position: relative;
  background: #fffaf1;
}

.hero-fold {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 89px);
}

.hero {
  padding: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  background: #0d0b08 url('https://i.postimg.cc/Ls0wZMTs/fachada-duran.jpg') center 40% / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(8,6,4,0.97) 0%, rgba(8,6,4,0.90) 52%, rgba(8,6,4,0.72) 100%);
}

.authority-layout,
.contact-panel,
.logistics-band,
.page-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.timeline-item,
.mission-card,
.service-card,
.contact-detail,
.application-card,
.logistics-spotlight,
.logistics-rail article,
.contact-panel,
.privacy-policy__section,
.page-title__content {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-bar span,
.contact-heading span,
.page-title__content > span,
.privacy-policy__eyebrow,
.logistics-spotlight > span,
.mission-card span {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.authority-copy h2,
.contact-heading h2,
.logistics-spotlight h2,
.page-title__content h1,
.section-bar--products h1,
.mission-card h2,
.privacy-policy h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}


.hero h1,
.authority-copy h2,
.contact-heading h2,
.logistics-spotlight h2 {
  max-width: 12ch;
}

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

.hero-text,
.section-bar p,
.authority-copy p,
.authority-list p,
.application-body p,
.logistics-rail p,
.logistics-highlight p,
.contact-heading p,
.timeline-item p,
.mission-card p,
.service-card p,
.contact-detail p,
.privacy-policy__intro,
.privacy-policy__section p,
.privacy-policy__section li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section-whatsapp,
.privacy-policy__back {
  min-height: 56px;
  padding: 0 26px;
  font-family: inherit;
  font-size: 0.96rem;
}

.section-whatsapp--hero {
  min-height: 60px;
  padding: 0 30px;
}

.hero-catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border: none;
  border-radius: 999px;
  color: #14110d;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  box-shadow: 0 18px 42px rgba(242, 195, 0, 0.3);
  text-decoration: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.hero-catalog-button:hover,
.hero-catalog-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(242, 195, 0, 0.42);
  filter: brightness(1.05);
}

/* ── Hero content (new full-bleed layout) ────────── */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 48px;
}

.hero-content .hero-kicker {
  color: var(--yellow);
  opacity: 0.88;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: none;
  margin: 0 0 24px;
}

.hero-h1-accent {
  color: var(--yellow);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 36px;
  max-width: 50ch;
}

/* ── Segments band ───────────────────────────────── */
.segments-band {
  position: relative;
  flex-shrink: 0;
  background: #0d0b08;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.segment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.segment-item:last-child {
  border-right: none;
}

.segment-item:hover,
.segment-item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.segment-item i {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.segment-item span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.35;
}

.segment-brinquedos-img {
  width: 3rem;
  height: 3rem;
  margin-top: -10px;
}

.segment-brinquedos-span {
  margin-top: -10px;
}

@media (max-width: 640px) {
  .segment-brinquedos-img {
    width: 2.6rem;
    height: 2.6rem;
    margin-top: -11px;
  }

  .segment-brinquedos-span {
    margin-top: -8px;
  }
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 28px;
  padding-top: 10px;
}

.hero-summary article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mission-card,
.service-card,
.contact-detail {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-summary strong,
.authority-list h3,
.application-body h3,
.timeline-item h3,
.service-card h3,
.contact-detail h3 {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 700;
}

.hero-summary span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}

.hero-summary article:first-child {
  padding-right: 18px;
}

.hero-summary article:last-child {
  padding-left: 22px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-image {
  overflow: hidden;
  min-height: 420px;
  padding: 16px;
  border: 1px solid rgba(22, 19, 15, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 232, 0.94));
  box-shadow: var(--shadow);
}

.hero-image img,
.page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
}

.hero-plate {
  padding: 28px;
  border-radius: 28px;
  color: #f8f4ed;
  background:
    linear-gradient(135deg, rgba(18, 15, 11, 0.98), rgba(33, 27, 21, 0.96));
  box-shadow: var(--shadow);
}

.hero-plate {
  border-left: 5px solid var(--yellow);
}

.logistics-spotlight {
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.hero-plate span {
  color: var(--yellow);
}

.logistics-spotlight > span {
  color: var(--red);
}

.hero-plate strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.5;
}

.hero-plate p {
  margin: 14px 0 0;
  color: rgba(248, 244, 237, 0.78);
  line-height: 1.7;
}

.stat-ribbon {
  padding: 72px 0 56px;
  background: #efe4d3;
}

.stat-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.stat-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  text-align: center;
}

.stat-highlight span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(242, 195, 0, 0.16);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-highlight strong {
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.12;
  font-weight: 800;
}

.stat-track article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.stat-track article:first-child strong {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.stat-track strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  font-weight: 800;
}

.stat-track span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section-bar {
  display: grid;
  gap: 12px;
}

.section-bar p,
.authority-copy p,
.contact-heading p {
  max-width: 58ch;
  margin: 0;
}

.authority-copy > p,
.contact-heading > p {
  margin-top: 16px;
}

.authority-list {
  display: grid;
  gap: 24px;
  padding-left: 0;
  border-left: 0;
}

.authority-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.authority-list span {
  color: rgba(215, 167, 0, 0.65);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.authority-list article > div {
  padding-top: 4px;
}

.applications-grid,
.mission-grid,
.services-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.applications-grid {
  grid-template-columns: 1fr;
  gap: 42px;
  margin-top: 34px;
}

.applications {
  background: #efe4d3;
}

.application-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 42px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.application-card:focus-visible {
  outline: 2px solid var(--yellow);
}

.application-card:nth-child(even) .application-media {
  order: 2;
}

.application-card:nth-child(even) .application-body {
  order: 1;
}

.application-media {
  position: relative;
  min-height: 300px;
  height: 300px;
  overflow: hidden;
  background: #d8c8b2;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.application-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.32s ease, filter 0.22s ease;
}

.application-body {
  padding: 0;
  max-width: 52ch;
}

.application-body p,
.timeline-item p,
.service-card p,
.contact-detail p {
  margin: 14px 0 0;
}

.application-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #14110d;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  box-shadow: 0 18px 42px rgba(242, 195, 0, 0.3);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.application-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(242, 195, 0, 0.42);
  filter: brightness(1.05);
}


.application-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.application-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.applications-cta,
.services-cta,
.contact-page-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.logistics-band {
  gap: 54px;
  align-items: start;
}

.logistics {
  background: #f6efe3;
}

.logistics-highlight {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 0;
}

.logistics-highlight strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.logistics-highlight p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  max-width: 28ch;
}

.logistics-cta {
  margin-top: 28px;
}

.logistics-rail {
  display: grid;
  gap: 20px;
  padding-top: 18px;
}

.logistics-rail article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logistics-icon,
.service-card i,
.contact-detail i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #14110d;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
}

.contact-panel {
  padding: 34px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.contact {
  background: #efe4d3;
}

.whatsapp-card {
  justify-self: end;
  min-height: 82px;
  padding: 0 36px;
  font-size: 1.06rem;
}

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

.whatsapp-copy {
  font-weight: 800;
}

/* ── Benefits section ────────────────────────────── */
.benefits {
  background: #fffaf1;
  padding-top: 112px;
  padding-bottom: 96px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.benefit-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.benefit-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.15rem;
  color: #14110d;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── WhatsApp flutuante ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 2px 8px rgba(0,0,0,0.25);
}

.whatsapp-float i {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
}

@keyframes wpp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
  animation: wpp-pulse 2.4s ease-out infinite;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: #0d0b08;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
  padding: 56px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.4fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: block;
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 26ch;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--yellow);
  color: #14110d;
  border-color: var(--yellow);
}

.footer-col h4 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.footer-col ul a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
  color: var(--yellow);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--yellow);
  font-size: 0.88rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.footer-hours-list {
  gap: 0 !important;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours-list li:last-child {
  border-bottom: none;
}

.footer-hours-list span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
}

.footer-hours-list strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-inner a:hover,
.footer-bottom-inner a:focus-visible {
  color: var(--yellow);
}

.footer-verse {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.verse-ref {
  white-space: nowrap;
}

.contact-detail a {
  color: var(--red);
  font-weight: 700;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.page-title {
  padding: 84px 0 24px;
  background: #efe4d3;
}

.page-title__content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-section {
  background: #f6efe3;
}

.page-section + .page-section {
  background: #efe4d3;
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 76px;
  width: 2px;
  background: linear-gradient(180deg, rgba(215, 167, 0, 0.8), rgba(215, 167, 0, 0.15));
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 0;
}

.timeline-item small {
  position: relative;
  color: var(--yellow-deep);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  display: block;
}

.timeline-item small::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 70px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 0 0 8px rgba(242, 195, 0, 0.08);
}

.timeline-item > div {
  padding: 0 0 22px 24px;
  border-bottom: 1px solid rgba(22, 19, 15, 0.08);
}

.timeline-item:last-child > div {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Item de período: 2006 em cima, linha embaixo do número, 2017 abaixo */
.timeline-item--period small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 68px;
  white-space: nowrap;
}

/* linha abaixo do "2006" e acima do "2017", no espaço do texto — não na timeline */
.timeline-item--period small::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(215, 167, 0, 0.55);
}

.timeline-item--period small span:last-child {
  color: rgba(215, 167, 0, 0.7);
}

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

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

.contact-map {
  margin-top: 26px;
}

.snick-map {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.privacy-policy__wrap {
  width: min(100%, 860px);
}

.privacy-policy__updated {
  margin: 18px 0 0;
  color: var(--red);
  font-size: 0.98rem;
  font-weight: 700;
}

.privacy-policy__intro {
  margin: 22px 0 0;
}

.privacy-policy__sections {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.privacy-policy__section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.privacy-policy__section h2 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.35;
  font-weight: 700;
}

.privacy-policy__section ul {
  margin: 0;
  padding-left: 22px;
}

.privacy-policy__section li + li {
  margin-top: 10px;
}

.privacy-policy__actions {
  margin-top: 32px;
}

/* ── Products page ───────────────────────────────── */
.page-title--products {
  display: none;
}

.page-title--products .page-title__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-bar--products h1 {
  max-width: 12ch;
}

.page-subtitle {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
  margin: 14px 0 0;
  max-width: 52ch;
}

.page-title .catalog-download-btn {
  display: inline-flex;
  margin-top: 32px;
  align-self: flex-start;
}

.product-search {
  position: relative;
  max-width: 460px;
  margin: 28px 0 0;
}

.product-search i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 0.92rem;
  pointer-events: none;
}

.product-search input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-search input:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px rgba(242, 163, 0, 0.14);
}

.product-search__empty {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.products-showcase {
  margin-top: 42px;
  display: grid;
  gap: 34px;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.category-band {
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  min-width: 0;
  max-width: 100%;
}

.category-band + .category-band {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.category-band__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 860px;
}

.category-band__eyebrow {
  display: none;
}

.category-band__eyebrow i {
  color: var(--yellow);
}

.category-band__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.category-band__intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.carousel-shell {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 195, 0, 0.5);
  border-radius: 50%;
  background: var(--yellow);
  color: #1a1200;
  box-shadow: 0 2px 10px rgba(242, 195, 0, 0.3);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
  background: #ffd900;
  border-color: rgba(242, 195, 0, 0.8);
}

.carousel-arrow:disabled {
  background: #e8e0d0;
  color: rgba(90, 77, 54, 0.3);
  border-color: rgba(146, 113, 46, 0.1);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 0.45;
}

.product-track {
  --product-track-gap: 18px;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--product-track-gap) * 3)) / 4);
  gap: var(--product-track-gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 6px;
  overscroll-behavior-x: contain;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-slide {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-media {
  min-height: 230px;
  margin: 16px 16px 0;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
}

.product-media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
}

.product-media-placeholder {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin: 16px 16px 0;
  border-radius: 22px;
  border: 2px dashed rgba(146, 113, 46, 0.26);
  background:
    radial-gradient(circle at center, rgba(242, 195, 0, 0.18), rgba(242, 195, 0, 0.05) 42%, transparent 70%),
    linear-gradient(180deg, rgba(255, 248, 228, 0.9), rgba(255, 255, 255, 0.92));
  position: relative;
}

.product-media-placeholder::before {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2rem;
  color: rgba(129, 94, 35, 0.34);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 16px));
}

.product-media-placeholder span {
  margin-top: 42px;
  color: rgba(103, 77, 33, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-slide__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 12px;
  padding: 18px 18px 20px;
}

.product-code {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(242, 195, 0, 0.16);
  color: #8b5c00;
  border: 1px solid rgba(242, 195, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-slide__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.22;
}

.product-slide__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.7;
  flex: 1;
  word-break: break-word;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.product-specs li {
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.5;
  word-break: break-word;
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.product-pills span {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(109, 84, 41, 0.06);
  color: #765826;
  border: 1px solid rgba(109, 84, 41, 0.1);
  font-size: 0.74rem;
  font-weight: 700;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}


/* ── Contact form ────────────────────────────────── */
.form-section {
  background: var(--cream);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  margin-top: 36px;
  align-items: start;
}

.quote-form {
  margin-top: 48px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.sidebar-card h4 {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink);
}

.sidebar-card ul li i {
  color: var(--yellow-deep);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-card ul li a {
  color: var(--ink);
  text-decoration: none;
}

.sidebar-card ul li a:hover {
  color: var(--yellow-deep);
}

.sidebar-hours li {
  justify-content: space-between;
}

.sidebar-hours li span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.sidebar-hours li strong {
  font-size: 0.84rem;
}

.sidebar-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease;
  margin-top: 4px;
}

.sidebar-wa-btn:hover {
  filter: brightness(1.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px rgba(242, 163, 0, 0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  color: #14110d;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(242, 195, 0, 0.25);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.form-submit-btn:hover,
.form-submit-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.form-submit-btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  filter: none;
}

.form-feedback {
  display: none;
  width: 100%;
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  color: #166534;
  background: #ecfdf3;
  border-color: #bbf7d0;
}

.form-feedback.is-error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Sobre Nós — videos section ─────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
  align-items: start;
}

.video-embed {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d0b08;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-embed--reel {
  aspect-ratio: 9 / 16;
  background: #fff;
}

.social-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
}

.social-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.social-card--yt .social-card__header i {
  font-size: 1.7rem;
  color: #ff0000;
  flex-shrink: 0;
}

.social-card__header strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.social-card__header span {
  font-size: 0.72rem;
  color: #888;
}

.social-card__embed {
  position: relative;
  flex: 1;
}

.social-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-caption {
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ── Sobre Nós — structure & sustainability ──────── */
.structure-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.structure-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.structure-list li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  color: #14110d;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.structure-list li div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.structure-list li div span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.sustainability-band {
  background: #0d0b08;
  padding: 72px 0;
}

.podcast-band {
  background: #0d0b08;
  padding: 72px 0;
}

.podcast-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
  margin-top: 36px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.podcast-feature__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.podcast-feature__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.podcast-feature__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  color: #14110d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.podcast-feature__body h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.podcast-feature__body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.sustainability-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.sustainability-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  color: #14110d;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.sustainability-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.sustainability-card p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 0;
}

/* Catalog download CTA section */
.catalog-section {
  background: #0d0b08;
  padding: 80px 0;
  position: relative;
}

.catalog-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 48px;
  align-items: center;
  overflow: visible;
  position: relative;
}

.catalog-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.catalog-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 30px;
  max-width: 52ch;
}

.catalog-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
  color: #14110d;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 42px rgba(242, 195, 0, 0.28);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.catalog-download-btn:hover,
.catalog-download-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 24px 50px rgba(242, 195, 0, 0.4);
}

.catalog-banner__visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 200px;
  min-width: 200px;
  height: 0;
  overflow: visible;
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.06);
  font-size: 10rem;
  line-height: 1;
}

.catalog-banner__visual img {
  display: block;
  width: 460px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: -168px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .authority-layout,
  .logistics-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .catalog-banner,
  .sustainability-grid,
  .podcast-feature {
    grid-template-columns: 1fr;
  }

  .sustainability-grid .sustainability-card:last-child {
    display: none;
  }

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

  .sustainability-card:last-child {
    display: block;
  }

  .catalog-section {
    z-index: 2;
    overflow: visible;
  }

  .catalog-banner__visual {
    position: absolute;
    bottom: -230px;
    right: 0;
    width: auto;
    height: auto;
    min-width: unset;
    display: flex;
    justify-content: flex-end;
    z-index: 50;
    margin: 0;
    transform: none;
  }

  .catalog-banner__visual img {
    position: static;
    width: 220px;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  }

  .structure-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .application-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .application-card:nth-child(even) .application-media,
  .application-card:nth-child(even) .application-body {
    order: initial;
  }

  .application-card:nth-child(even) .application-body {
    padding-left: 0;
  }

  .application-card:nth-child(odd) .application-body {
    padding-right: 0;
  }

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

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

  .stat-track article:nth-child(2) {
    border-right: 0;
  }

  .authority-list article:nth-child(2),
  .authority-list article:nth-child(3),
  .logistics-rail article:nth-child(2),
  .logistics-rail article:nth-child(3) {
    margin-left: 0;
  }

  .whatsapp-card {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 80px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-shell {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    padding: 104px 28px 28px;
    background-color: #080808;
    background-image: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.28s ease, transform 0.32s ease, visibility 0.28s ease;
  }

  .nav-shell.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav {
    display: grid;
    gap: 0;
    width: min(100%, 420px);
  }

  .nav a {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 0;
    color: rgba(255, 248, 236, 0.94);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a::after {
    display: none;
  }

  .nav a i {
    display: inline-block;
    color: var(--yellow);
    font-size: 1rem;
    text-align: center;
  }

  .nav a span {
    display: block;
  }

  .header-whatsapp {
    width: min(100%, 420px);
    justify-content: center;
    min-height: 56px;
    margin-top: 6px;
    font-size: 0.98rem;
    box-shadow: 0 18px 40px rgba(242, 195, 0, 0.16);
  }

  .menu-toggle {
    z-index: 32;
    display: inline-flex;
  }

  .menu-toggle.is-open {
    position: fixed;
    top: 12px;
    right: 12px;
  }

  .hero,
  .authority,
  .applications,
  .logistics,
  .contact,
  .page-section,
  .privacy-policy {
    padding: 64px 0;
  }

  .hero-fold {
    min-height: calc(100vh - 81px);
  }

  .hero {
    padding: 0;
  }

  .hero-content {
    padding: 52px 0 40px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .hero-lead {
    max-width: none;
  }

  .applications-grid,
  .services-grid,
  .contact-grid,
  .stat-track {
    grid-template-columns: 1fr;
  }

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

  .segment-item:nth-child(4) {
    border-right: none;
  }

  .segment-item:nth-child(n+5) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-highlight {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-summary article:first-child {
    padding-right: 0;
    padding-bottom: 18px;
    transform: none;
  }

  .hero-summary article:last-child {
    padding-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .authority-list {
    padding-left: 0;
  }

  .hero-image {
    min-height: 320px;
  }

  .hero-catalog-button {
    align-self: flex-start;
  }

  .hero-segments article {
    min-height: 0;
  }

  .hero h1,
  .authority-copy h2,
  .contact-heading h2,
  .logistics-spotlight h2,
  .page-title__content h1,
  .section-bar--products h1,
  .mission-card h2,
  .privacy-policy h1 {
    max-width: none;
  }

  .contact-panel {
    padding: 28px 0 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-item small {
    padding-left: 20px;
  }

  .timeline-item small::after {
    left: 0;
    top: 28px;
  }

  .timeline-item--period small::before {
    left: 36px;
  }

  .timeline-item > div {
    padding: 0 0 22px 24px;
  }

  .whatsapp-card {
    width: 100%;
  }

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

  .category-band {
    grid-template-columns: 1fr;
    padding: 0;
    overflow-x: clip;
  }

  .carousel-actions {
    display: flex;
    justify-content: flex-start;
  }

  .product-track {
    grid-auto-columns: min(320px, calc(100vw - 56px));
  }

  .video-embed {
    aspect-ratio: 9 / 16;
    min-height: 420px;
  }

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

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

  .contact-sidebar {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-track article {
    min-height: 118px;
    padding: 20px 0;
    align-items: center;
    text-align: center;
  }

  .stat-track article:nth-child(2),
  .stat-track article:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    height: 38px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
  }

  .nav-shell {
    padding: 96px 22px 22px;
  }

  .hero-content {
    padding: 48px 0 36px;
  }

  .page-title__content,
  .mission-card,
  .service-card,
  .contact-detail,
  .privacy-policy__section {
    border-radius: 22px;
  }

  .segment-item {
    padding: 16px 6px;
    gap: 8px;
  }

  .segment-item i {
    font-size: 1.4rem;
  }

  .segment-item span {
    font-size: 0.62rem;
  }

  .product-track {
    grid-auto-columns: calc(100vw - 32px);
  }

  .products-showcase,
  .category-band,
  .carousel-shell {
    overflow-x: clip;
  }

  .product-media-placeholder {
    min-height: 200px;
  }

  .product-media {
    min-height: 200px;
  }

  .product-media img {
    height: 200px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .application-media {
    min-height: 210px;
    height: 210px;
    border-radius: 24px;
  }

  .snick-map {
    height: 320px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
