:root {
  /* Brand */
  --color-primary: #b43c64;
  --color-primary-2: #c35f7a;
  --color-primary-3: #d28396;
  --color-primary-4: #e1a7b2;
  --color-primary-5: #f0cbce;

  /* Accent (highlight blocks) */
  --color-accent: #7d1535;

  --color-secondary: #f7eee7;
  --color-secondary-2: #f8f0ea;
  --color-secondary-3: #faf3ee;
  --color-secondary-4: #fbf6f2;
  --color-secondary-5: #fdf9f6;

  /* Neutrals derived for UI */
  --color-ink: #1f0f16;
  --color-text: #2a1520;
  --color-muted: rgba(42, 21, 32, 0.72);
  --color-line: rgba(31, 15, 22, 0.12);
  --color-surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 12px 24px rgba(31, 15, 22, 0.08);

  /* Type scale */
  --text-title: clamp(28px, 3.6vw, 44px);
  --text-body: 16px;
  --text-eyebrow: 12px;

  /* Layout */
  --radius: 16px;
  --container: 1140px;
  --gutter: 28px;

  /* Typography */
  --font-display: "Proxima Nova", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  --font-display-weight: 700;
  --font-sans: "Proxima Nova", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;

  /* Used for edge fades on horizontal carousels */
  --page-bg: var(--color-secondary-5);

  /* Viewport width helper (avoid scrollbar misalignment) */
  --vw: 100vw;
}

@supports (width: 100dvw) {
  :root {
    --vw: 100dvw;
  }
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/Proxima Nova Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/Proxima Nova Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/Proxima Nova Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/Proxima Nova Extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.5;
  background: linear-gradient(180deg, #ffffff, var(--color-secondary-5));
}

/* Subtle entrance animations */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.reveal--in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.header .container {
  width: min(var(--container), calc(100% - 24px));
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 12px;
  z-index: 100;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

/* Sobre o hero escuro: links e menu em branco; volta ao tom de texto após scroll (.is-scrolled) */
.header:not(.is-scrolled) .nav a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease;
}

.header:not(.is-scrolled) .nav a:hover {
  color: #ffffff;
}

/* Menu mobile aberto: fundo claro — manter contraste escuro nos links */
.header:not(.is-scrolled) .nav.is-open a {
  color: var(--color-muted);
}

.header:not(.is-scrolled) .nav.is-open a:hover {
  color: var(--color-text);
}

.header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

/* Header uses tighter horizontal gutters than page content */
.header .container {
  width: min(var(--container), calc(100% - 24px));
}

.header.is-scrolled {
  border-bottom-color: var(--color-line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(31, 15, 22, 0.06);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand__name {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
}

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

.nav__brand,
.nav__close {
  display: none;
}

.nav a {
  color: var(--color-muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--color-text);
}

.button {
  border: 1px solid var(--color-primary);
  border-radius: 0;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
}

.button:disabled {
  cursor: not-allowed;
}

.button--ghost {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-text);
  box-shadow: none;
}

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

.button--small {
  padding: 10px 14px;
}

/* Seta que surge no hover (Contato, Fale com a Pink Flag, Enviar mensagem) */
.button--arrow {
  gap: 0;
  justify-content: center;
}

.button--arrow .button__label {
  display: inline-block;
}

.button--arrow .button__iconArrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-5px);
  overflow: hidden;
  pointer-events: none;
  transition:
    width 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    margin-left 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

.button--arrow .button__iconArrow svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.button--arrow:hover .button__iconArrow,
.button--arrow:focus-visible .button__iconArrow {
  width: 18px;
  margin-left: 8px;
  opacity: 1;
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .button--arrow .button__iconArrow {
    transition: opacity 0.15s ease;
  }

  .button--arrow:hover .button__iconArrow,
  .button--arrow:focus-visible .button__iconArrow {
    transform: none;
  }
}

/* Footer */
.footer {
  padding: 140px 0 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #12070c;
  color: rgba(255, 255, 255, 0.86);
}

.footer__top {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding-bottom: 28px;
}

.footer__logo {
  height: 32px;
  width: auto;
  display: block;
}

.footer__social {
  display: flex;
  gap: 18px;
}

.iconButton {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.iconButton:hover {
  transform: translate3d(0, -1px, 0);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.iconButton img,
.iconButton svg {
  width: 22px;
  height: 22px;
  display: block;
}

.footer__nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0 28px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero {
  padding: 58px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: stretch;
}

/* Full-viewport hero media (placeholder for video) */
.hero--video {
  padding: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100svh;
  margin: 0 auto 112px;
  overflow: hidden;
}

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

.kicker {
  margin: 0 0 14px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.6);
}

h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.lead {
  margin: 0 0 22px;
  color: var(--color-muted);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero__meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metaItem {
  border-top: 1px solid var(--color-line);
  padding-top: 12px;
}

.metaItem__k {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.metaItem__v {
  display: block;
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.visualFrame {
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0)),
    radial-gradient(120% 80% at 20% 10%, rgba(180, 60, 100, 0.18), transparent 60%),
    linear-gradient(180deg, var(--color-secondary-5), var(--color-secondary));
  position: relative;
  overflow: hidden;
}

.visualFrame__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.visualFrame__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: 13px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 12px 12px;
}

.section {
  padding: 112px 0;
  scroll-margin-top: 92px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* About-style sections (Quem somos / Apoio) */
.section--about .about {
  position: relative;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 0;
  background: rgba(31, 15, 22, 0.06);
  overflow: hidden;
}

.section--about .about__copy {
  max-width: 70ch;
  padding: clamp(28px, 4.2vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--about .about__media {
  margin: 0;
  height: 100%;
  align-self: stretch;
  display: block;
  position: relative;
  overflow: visible;
}

.floatRect {
  position: absolute;
  top: 18px;
  right: -28px;
  width: 96px;
  height: 44px;
  background: var(--color-primary);
  z-index: 2;
  will-change: transform;
  transform: translate3d(0, var(--float-y, 0px), 0);
}

@media (max-width: 900px) {
  .floatRect {
    top: 14px;
    right: -18px;
    width: 84px;
    height: 40px;
  }
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.about h2 {
  margin: 0 0 16px;
  line-height: 1;
}

.about__body {
  margin: 0;
  color: var(--color-muted);
  max-width: 70ch;
  line-height: 1.7;
}

.about__body p {
  margin: 0;
}

.about__body p + p {
  margin-top: 12px;
}

/* Conceito — editorial: grayscale leve, stage elevado, tags #fafafa opacas */
@keyframes conceptTagReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 4px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.concept {
  background: rgba(31, 15, 22, 0.06);
}

.concept .concept__inner {
  padding: clamp(64px, 8vw, 104px) 0 clamp(48px, 6vw, 72px);
}

.concept__inner {
  display: grid;
  gap: 0;
}

.concept__media {
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: min(100%, var(--container));
  margin-inline: auto;
  overflow: visible;
  padding: clamp(12px, 2vw, 28px) 0;
}

.concept__frame {
  width: 100%;
  will-change: transform;
}

.concept__stage {
  position: relative;
  width: 100%;
  max-height: min(92vh, 960px);
  aspect-ratio: 9 / 13;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(31, 15, 22, 0.08);
  background: rgba(22, 12, 16, 0.04);
  box-shadow:
    0 25px 50px -12px rgba(31, 15, 22, 0.28),
    0 12px 24px -8px rgba(31, 15, 22, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.concept__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 18% 35%, rgba(180, 60, 100, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(31, 15, 22, 0.14) 0%, transparent 58%),
    linear-gradient(165deg, rgba(31, 15, 22, 0.06) 0%, transparent 38%),
    linear-gradient(to top, rgba(31, 15, 22, 0.58) 0%, rgba(31, 15, 22, 0.18) 32%, rgba(31, 15, 22, 0.04) 55%, transparent 78%);
}

.concept__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.14);
  transform-origin: center center;
  filter: grayscale(15%);
  background: rgba(0, 0, 0, 0.04);
}

.conceptFrame {
  display: flex;
  width: 100%;
  background: #fafafa;
  border: 1px solid rgba(31, 15, 22, 0.08);
  border-bottom: 0;
}

.conceptFrame--bottom {
  border-top: 0;
  border-bottom: 1px solid rgba(31, 15, 22, 0.08);
}

.conceptFrame__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.8vw, 18px);
  min-width: 0;
  border-right: 1px solid rgba(31, 15, 22, 0.08);
}

.conceptFrame__item:last-child {
  border-right: 0;
}

.conceptFrame__num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(42, 21, 32, 0.34);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.conceptFrame__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(31, 15, 22, 0.92);
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

span.conceptKeyword {
  margin-top: 260px;
}

.concept__frame .concept__stage {
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .concept__frame {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .concept .concept__inner {
    padding: clamp(52px, 7vw, 72px) 0 clamp(40px, 5vw, 56px);
  }

  .concept__inner {
    gap: 0;
  }

  .concept__stage {
    max-height: min(88svh, 900px);
  }

  .conceptFrame__item {
    gap: 14px;
    padding: 12px 12px;
  }

  .conceptFrame__label {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .conceptFrame__num {
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .concept .concept__inner {
    padding: clamp(44px, 10vw, 64px) 0 clamp(36px, 8vw, 48px);
  }

  .concept__inner {
    gap: 0;
  }

  .concept__stage {
    max-height: 78svh;
    max-height: 78vh;
  }

  .concept__video {
    transform: scale(1.16);
    object-position: 50% 40%;
  }

  .conceptFrame__item {
    padding: 11px 10px;
    gap: 12px;
  }

  .conceptFrame__label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .conceptFrame__num {
    font-size: 9px;
  }
}

.about__media {
  display: flex;
  justify-content: flex-end;
}

.about__media img {
  width: min(640px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid var(--color-line);
  background: rgba(0, 0, 0, 0.04);
  display: block;
}

.about__media video {
  width: min(640px, 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid var(--color-line);
  background: rgba(0, 0, 0, 0.04);
}

.section--about .about__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
}

.section--about .about__media video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
}

.section--alt {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: rgba(247, 238, 231, 0.25);
}

.section__head {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.section__head--stack {
  flex-direction: column;
  align-items: flex-start;
}

.section__head .title1,
.section__head h2.title1 {
  max-width: min(100%, 760px);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: clamp(24px, 3.2vw, 34px);
}

.title1,
h2.title1 {
  font-size: 40px;
  line-height: 1.05;
}

.about h2.title1,
.contact__copy h2.title1 {
  font-size: 40px;
  line-height: 1.05;
}

.title2 {
  font-size: 32px;
  line-height: 1.1;
}

h3.title2,
.gridCard__body h3.title2 {
  font-size: 32px;
  line-height: 1.1;
}

.section__head p {
  margin: 0;
  color: var(--color-muted);
}

/* O que fazemos (2x2 grid) */
.what {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 26px;
}

.what__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1;
}

.what__lead {
  margin: 10px 0 0;
  color: var(--color-muted);
  max-width: 70ch;
}

.whatGrid,
.grid2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Visual break between sections */
.sectionBreak {
  padding: 0;
}

.sectionBreak__media {
  margin: 0;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  height: auto;
  max-height: 80vh;
  max-height: 80svh;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.sectionBreak__media img,
.sectionBreak__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.04);
}

/* Contato */
.contact {
  padding: 0;
  position: relative;
}

.contact__media {
  margin: 0;
  width: 100%;
  aspect-ratio: 1920 / 840;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.contact__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: rgba(0, 0, 0, 0.04);
}

.contact__media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Rosado com gradiente sutil + leve blur para legibilidade do texto */
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(180, 60, 100, 0.82) 0%,
      rgba(180, 60, 100, 0.64) 42%,
      rgba(125, 21, 53, 0.72) 100%
    ),
    linear-gradient(
      140deg,
      rgba(180, 60, 100, 0.58) 0%,
      rgba(125, 21, 53, 0.48) 55%,
      rgba(195, 95, 122, 0.52) 100%
    );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.contact__media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 1px, rgba(0, 0, 0, 0) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, rgba(255, 255, 255, 0) 1px 4px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08), transparent 50%);
}

.contact__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}

.contact__inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(44px, 6vw, 104px) 0;
}

.contact__copy {
  pointer-events: auto;
  max-width: 62ch;
  padding: 0 clamp(0px, 4vw, 64px);
  text-align: center;
  margin: 0 auto;
}

.contact__copy h2 {
  line-height: 1;
}

.contact__copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.contact__copy h2 {
  color: #ffffff;
}

.contact__copy .button {
  margin-top: 24px;
}

.contact__copy .button {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.contact__copy .button:hover {
  background: color-mix(in srgb, var(--color-accent), #ffffff 10%);
  border-color: color-mix(in srgb, var(--color-accent), #ffffff 10%);
}

.contact__actions {
  margin-top: 18px;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 15, 22, 0.36);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 24px));
  max-height: min(820px, calc(100vh - 24px));
  max-height: min(820px, calc(100dvh - 24px));
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.modal__media {
  margin: 0;
  width: 100%;
  flex: 0 1 auto;
  min-height: 0;
  /* Altura cede em viewports baixas para o formulário caber sem scroll no modal */
  height: clamp(72px, min(26vh, 28vw), 260px);
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}

.modal__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: rgba(0, 0, 0, 0.04);
}

.modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 28px;
  line-height: 1;
}

.modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--color-muted);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
}

.modal__close:hover {
  color: var(--color-text);
}

.contactForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 14px;
  flex: 1 1 auto;
  min-height: 0;
  align-content: start;
}

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

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42, 21, 32, 0.64);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(31, 15, 22, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  padding: 10px 0 12px;
  outline: none;
}

.field textarea {
  resize: none;
  min-height: 72px;
  max-height: min(120px, 22vh);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: rgba(180, 60, 100, 0.65);
}

.modal__actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

@media (max-height: 720px) {
  .modal__dialog {
    max-height: min(820px, calc(100vh - 16px));
    max-height: min(820px, calc(100dvh - 16px));
  }

  .modal__media {
    height: clamp(52px, min(20vh, 24vw), 160px);
  }

  .modal__body {
    padding: 14px 16px 16px;
  }

  .modal__title {
    font-size: clamp(20px, 5vw, 24px);
  }

  .modal__head {
    margin-bottom: 6px;
  }

  .contactForm {
    gap: 12px 16px;
    margin-top: 10px;
  }

  .field textarea {
    min-height: 56px;
    max-height: min(96px, 18vh);
  }
}

@media (max-height: 560px) {
  .modal__media {
    height: clamp(44px, min(16vh, 20vw), 120px);
  }

  .contactForm {
    gap: 8px 12px;
  }

  .field textarea {
    min-height: 48px;
    max-height: min(72px, 14vh);
  }

  .modal__actions {
    margin-top: 8px;
  }
}

/* Catalogo de Produtos */
.catalogTabs__list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--color-line);
}

.catalogTabs__tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  position: relative;
  transition: color 180ms ease;
}

.catalogTabs__tab:hover {
  color: var(--color-text);
}

.catalogTabs__tab[aria-selected="true"] {
  color: var(--color-text);
}

.catalogTabs__tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: rgba(180, 60, 100, 0.55);
}

.catalogTabs__tab:focus-visible {
  outline: 2px solid rgba(180, 60, 100, 0.28);
  outline-offset: 6px;
  border-radius: 6px;
}

.catalogTabs__panel {
  margin-top: 18px;
}

.catalogCarousel {
  position: relative;
  background: transparent;
  overflow: hidden;
  margin-right: calc(50% - (var(--vw) / 2));
  margin-left: calc(50% - (var(--vw) / 2));
}

.catalogCarousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-gutter: stable both-edges;
  height: min(80vh, 820px);
  height: min(80svh, 820px);
  scroll-padding-left: max(var(--gutter), calc((var(--vw) - var(--container)) / 2));
  scrollbar-width: none; /* Firefox */
}

/* Controles fixos no wrapper — não rolam com as fotos; JS move só o scroll do viewport */
.catalogCarousel__prev,
.catalogCarousel__next {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(31, 15, 22, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, background-color 0.2s ease, color 0.2s ease;
}

.catalogCarousel__prev {
  left: max(14px, env(safe-area-inset-left));
}

.catalogCarousel__next {
  right: max(14px, env(safe-area-inset-right));
}

.catalogCarousel__prev:hover:not(:disabled),
.catalogCarousel__next:hover:not(:disabled) {
  background: #ffffff;
  color: var(--color-primary-2);
}

.catalogCarousel__prev:focus-visible,
.catalogCarousel__next:focus-visible {
  outline: 2px solid rgba(180, 60, 100, 0.45);
  outline-offset: 3px;
  opacity: 1;
  pointer-events: auto;
}

.catalogCarousel:hover .catalogCarousel__prev:not(:disabled),
.catalogCarousel:hover .catalogCarousel__next:not(:disabled) {
  opacity: 1;
  pointer-events: auto;
}

.catalogCarousel__prev:disabled,
.catalogCarousel__next:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (hover: none) {
  .catalogCarousel__prev:not(:disabled),
  .catalogCarousel__next:not(:disabled) {
    opacity: 1;
    pointer-events: auto;
  }
}

.catalogCarousel__viewport::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.catalogCarousel__viewport:focus-visible {
  outline: 2px solid rgba(180, 60, 100, 0.28);
  outline-offset: 6px;
}

.catalogCarousel__track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 18px;
  padding-left: max(var(--gutter), calc((var(--vw) - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((var(--vw) - var(--container)) / 2));
  width: max-content;
  height: 100%;
}

.catalogSlide {
  margin: 0;
  height: 100%;
  width: auto;
  flex: 0 0 auto;
  background: transparent;
  position: relative;
  scroll-snap-align: start;
}

/* Clareia só a base da foto para a legenda ganhar contraste sobre fundos escuros ou reflexos */
.catalogSlide::after {
  content: none;
}

.catalogSlide img {
  height: 100%;
  width: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.04);
}

.catalogSupport {
  display: grid;
  grid-template-columns: clamp(220px, 22vw, 360px) 1fr;
  gap: 28px;
  align-items: stretch;
  border: 0;
  background: transparent;
}

.catalogSupport__copy {
  padding: 0;
}

.catalogSupport__copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.catalogSupport__copy p + p {
  margin-top: 10px;
}

.catalogSupport__media {
  margin: 0;
  border: 0;
  aspect-ratio: 9 / 16;
}

.catalogSupport__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.04);
}

/* Nossos Produtos — sidebar + imagem hero (referência) */
.productShowcase {
  display: grid;
  grid-template-columns: minmax(260px, 30%) minmax(0, 1fr);
  align-items: stretch;
  column-gap: 0;
  min-height: clamp(440px, min(72vh, 820px), 900px);
  margin-top: 48px;
  background: transparent;
  border: 1px solid rgba(31, 15, 22, 0.11);
}

.productShowcase__sidebar {
  --accordion-pad-x: clamp(20px, 3.2vw, 36px);
  padding: clamp(32px, 4.5vw, 56px) var(--accordion-pad-x) clamp(36px, 5vw, 60px);
  border-right: 1px solid rgba(31, 15, 22, 0.09);
  background: transparent;
}

.productAccordion {
  display: flex;
  flex-direction: column;
}

/* Linhas só entre opções; topo/base vêm do outline de .productShowcase */
.productAccordion__panel + .productAccordion__panel {
  border-top: 1px solid rgba(31, 15, 22, 0.12);
}

.productAccordion__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  min-height: clamp(56px, 7.5vh, 72px);
  padding: clamp(16px, 2.2vw, 22px) 0;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--color-text);
  user-select: none;
  transition:
    background-color 0.32s ease,
    color 0.28s ease;
}

.productAccordion__summary:hover {
  background-color: rgba(31, 15, 22, 0.045);
}

.productAccordion__summary:focus-visible {
  outline: 2px solid rgba(31, 15, 22, 0.22);
  outline-offset: 2px;
}

.productAccordion__summary::-webkit-details-marker {
  display: none;
}

.productAccordion__summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  color: rgba(31, 15, 22, 0.48);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.26s ease;
}

.productAccordion__panel:not([open]) .productAccordion__summary:hover::after {
  transform: rotate(90deg);
  color: rgba(31, 15, 22, 0.72);
}

.productAccordion__panel[open] .productAccordion__summary::after {
  content: "−";
  transform: none;
}

.productAccordion__panel[open] .productAccordion__summary:hover::after {
  color: rgba(31, 15, 22, 0.78);
}

.productAccordion__label {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  letter-spacing: 0.14em;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.2;
  display: inline-block;
  flex: 1;
  min-width: 0;
  text-align: left;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.36s ease,
    color 0.28s ease;
}

.productAccordion__summary:hover .productAccordion__label {
  transform: translateX(2px);
  letter-spacing: 0.145em;
}

.productAccordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.productAccordion__bodyInner {
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.48s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.productAccordion__panel[open] .productAccordion__bodyInner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

.productAccordion__panel:not([open]) .productAccordion__bodyInner {
  transition-delay: 0s;
  transition-duration: 0.28s, 0.3s;
}

.productAccordion__desc {
  margin: 0;
  padding: 0 0 clamp(20px, 3vw, 28px);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
}

.productAccordion__sublist {
  margin: 0;
  padding: 0 0 clamp(20px, 3vw, 28px);
  list-style: none;
  display: grid;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-muted);
}

.productAccordion__sublist li {
  text-wrap: balance;
  transition:
    color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.productAccordion__sublist li:hover {
  color: rgba(31, 15, 22, 0.88);
  transform: translateX(2px);
}

/* Mídia por painel: só mobile (desktop usa coluna hero) */
.productAccordion__media {
  display: none;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.productShowcase__visual {
  position: relative;
  margin-right: calc(50% - 50vw);
  min-width: 0;
  min-height: 100%;
  background: transparent;
}

.productShowcase__figure {
  margin: 0;
  position: absolute;
  inset: 0;
  min-height: clamp(440px, min(72vh, 820px), 900px);
}

.productShowcase__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* “Nossos Produtos”: respiro editorial */
#nossos-produtos .section__head {
  margin-bottom: 40px;
  max-width: min(100%, 760px);
}

#nossos-produtos .section__head .title1 {
  text-wrap: balance;
}

.section--products-split {
  overflow-x: clip;
}

.whatCard,
.gridCard {
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.whatCard__media,
.gridCard__media {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  display: block;
  background: rgba(0, 0, 0, 0.04);
}

.whatCard__body,
.gridCard__body {
  padding: 32px;
}

.whatCard__body h3,
.gridCard__body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 22px;
  line-height: 1.05;
}

.whatCard__body p,
.gridCard__body p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-size: 22px;
  line-height: 1.05;
}

@media (max-width: 900px) {
  :root {
    --gutter: 18px;
  }

  .header__inner {
    min-height: 68px;
  }

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

  .menu-toggle {
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 0;
  }

  .desktop-only {
    display: none;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0;
    padding: max(18px, env(safe-area-inset-top)) 22px max(22px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    z-index: 60;
    overscroll-behavior: contain;
  }

  .nav.is-open {
    display: flex;
  }

  /* Quando menu abre, garantir que nada “vaze” visualmente por cima/baixo */
  body.menu-open {
    overflow: hidden;
  }

  .nav__brand {
    display: inline-flex;
    position: absolute;
    top: max(14px, env(safe-area-inset-top));
    left: 18px;
    align-items: center;
  }

  .nav__logo {
    height: 26px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .nav a {
    font-family: var(--font-display);
    font-weight: var(--font-display-weight);
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.05;
    padding: 6px 0;
    width: auto;
    color: rgba(31, 15, 22, 0.92);
    background: transparent;
    border-radius: 0;
    text-align: center;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .nav a:hover {
    color: rgba(31, 15, 22, 1);
  }

  .nav__close {
    display: inline-flex;
    appearance: none;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(31, 15, 22, 0.78);
    font: inherit;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    padding: 10px 12px;
    width: auto;
    cursor: pointer;
    text-align: center;
    position: absolute;
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
  }

  .nav__close:hover {
    color: rgba(31, 15, 22, 1);
  }

  .header.is-scrolled .menu-toggle {
    border-color: var(--color-line);
    color: var(--color-text);
    background: transparent;
  }

  .header:not(.is-scrolled) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
  }

  /* Botão Menu/Fechar no mobile no mesmo estilo dos botões (sem outline) */
  .menu-toggle {
    border-radius: 0;
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    outline: none;
  }

  .menu-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 60, 100, 0.28);
  }

  /* Garantir que header/close fique acima do overlay */
  .header {
    z-index: 30;
  }

  /*
    iOS/Safari can break `position: fixed` descendants when an ancestor uses
    backdrop-filter (they behave like `absolute` and scroll with the page).
    On mobile, disable backdrop-filter so the fullscreen nav overlay always
    pins to the viewport even after scrolling.
  */
  .header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .section {
    padding: 64px 0;
    scroll-margin-top: 86px;
  }

  /* Contato tem mídia full-bleed; não adicionar padding vertical no mobile */
  .section.contact,
  .contact {
    padding: 0;
  }

  .hero--video {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    margin: 0 0 24px;
  }

  /* Editorial no mobile: mais alto (estilo hero) */
  .sectionBreak__media {
    aspect-ratio: auto;
    height: 100vh;
    height: 100svh;
    max-height: none;
  }

  .sectionBreak__media img,
  .sectionBreak__media video {
    height: 100%;
  }

  /* Percent height on <video> needs a definite parent height on mobile */
  .hero--video .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .title1,
  h2.title1 {
    font-size: clamp(30px, 7.6vw, 38px);
  }

  .title2,
  h3.title2,
  .gridCard__body h3.title2 {
    font-size: clamp(24px, 6.2vw, 30px);
  }

  .eyebrow {
    margin-bottom: 12px;
    letter-spacing: 0.14em;
  }

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

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

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

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

  .gridCard__body {
    padding: 22px;
  }

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

  .catalogTabs__list {
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
  }

  .catalogTabs__list::-webkit-scrollbar {
    display: none;
  }

  .catalogTabs__tab {
    white-space: nowrap;
    padding-bottom: 14px;
  }

  .catalogTabs__tab[aria-selected="true"]::after {
    bottom: -1px;
  }

  .catalogCarousel__viewport {
    height: min(72svh, 760px);
  }

  .catalogCarousel__track {
    padding: 14px;
    padding-left: max(var(--gutter), 14px);
    padding-right: max(var(--gutter), 14px);
    gap: 12px;
  }

  .catalogCarousel__prev,
  .catalogCarousel__next {
    width: 44px;
    height: 44px;
  }

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

  .catalogSupport__media {
    border-left: 0;
    border-top: 1px solid var(--color-line);
    min-height: 220px;
  }

  .productShowcase {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 32px;
  }

  .productShowcase__visual {
    display: none;
  }

  .productShowcase__sidebar {
    --accordion-pad-x: clamp(16px, 4vw, 22px);
    border-right: 0;
    border-bottom: 0;
    padding: 22px var(--accordion-pad-x) 18px;
  }

  .productAccordion__media {
    display: block;
    margin-top: 0;
    margin-bottom: 14px;
    margin-inline: calc(-1 * var(--accordion-pad-x));
    width: calc(100% + 2 * var(--accordion-pad-x));
    max-width: none;
  }

  .productAccordion__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .productAccordion__sublist {
    padding-bottom: clamp(12px, 2.5vw, 18px);
  }

  .contact__inner {
    padding: 22px 0;
  }

  /* Contato: garantir que a mídia ocupe toda a seção no mobile */
  .contact__frame {
    position: relative;
    /* O overlay sempre mede o frame; o frame mede a foto */
    height: min(92vh, 820px);
    height: min(92svh, 820px);
    overflow: hidden;
  }

  .contact__media {
    position: absolute;
    inset: 0;
    margin: 0;
    aspect-ratio: auto;
    height: 100%;
  }

  .contact__media img {
    height: 100%;
  }

  .contact__overlay {
    position: absolute;
    inset: 0;
  }

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

  /* About sections: empilhar e priorizar a imagem no topo */
  .section--about .about {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section--about .about__media {
    order: -1;
    min-height: 240px;
  }

  .section--about .about__copy {
    padding: 22px 18px 26px;
  }

  /* Modal: garantir encaixe confortável em telas estreitas */
  .modal__dialog {
    width: min(720px, calc(100vw - 20px));
    max-height: calc(100dvh - 20px);
    max-height: calc(100vh - 20px);
  }
}

@media (min-width: 901px) {
  /* Desktop já tem CTA "Contato" ao lado — evitar duplicar no menu */
  .nav a[href="#contato"] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .productAccordion__body,
  .productAccordion__bodyInner,
  .productAccordion__summary,
  .productAccordion__label,
  .productAccordion__summary::after,
  .productAccordion__sublist li {
    transition: none !important;
  }

  .productAccordion__panel:not([open]) .productAccordion__summary:hover::after {
    transform: none;
  }

  .productAccordion__summary:hover .productAccordion__label {
    transform: none;
    letter-spacing: 0.12em;
  }

  .productAccordion__sublist li:hover {
    transform: none;
  }
}

/* Floating WhatsApp button */
.whatsappFab {
  position: fixed;
  right: max(32px, calc(env(safe-area-inset-right) + 18px));
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  text-decoration: none;
}

.whatsappFab svg {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsappFab__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-4px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 15, 22, 0.72);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.33, 1, 0.68, 1);
}

.whatsappFab:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.26);
  background: color-mix(in srgb, #25d366, #000000 18%);
}

.whatsappFab:hover .whatsappFab__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.whatsappFab:focus-visible {
  outline: none;
  transform: translateY(-10px);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25), 0 26px 44px rgba(0, 0, 0, 0.26);
}

.whatsappFab:focus-visible .whatsappFab__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .whatsappFab {
    transition: none;
  }

  .whatsappFab__label {
    transition: none;
  }
}
