@font-face {
  font-family: "Saira";
  src: url("assets/fonts/saira-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Saira";
  src: url("assets/fonts/saira-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Saira";
  src: url("assets/fonts/saira-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Carlito";
  src: url("assets/fonts/carlito-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Carlito";
  src: url("assets/fonts/carlito-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --brand-navy: #2c314a;
  --brand-navy-deep: #202439;
  --brand-navy-soft: #414760;
  --brand-cyan: #00afef;
  --brand-cyan-dark: #006d94;
  --brand-cyan-soft: #dff6ff;
  --brand-gray: #e6e7e8;
  --brands-blue: #003d6c;
  --surface: #f7f8fa;
  --white: #ffffff;
  --ink: #202439;
  --muted: #596078;
  --line: #d8dae1;
  --line-dark: rgba(255, 255, 255, .18);
  --success: #1fa463;
  --warning-ink: #794500;
  --warning-surface: #fff3db;
  --control-off: #cbd0da;
  --font-display: "Saira", "Arial Narrow", sans-serif;
  --font-body: "Carlito", "Segoe UI", sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-header: 0 8px 24px rgba(18, 22, 38, .16);
  --shadow-floating: 0 22px 56px rgba(18, 22, 38, .24);
  --container: 1380px;
  --header-height: 86px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --z-header: 30;
  --z-floating: 40;
  --z-banner: 50;
  --z-modal: 60;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); text-wrap: balance; }
p, li { text-wrap: pretty; }
::selection { color: var(--brand-navy); background: var(--brand-cyan-soft); }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: calc(var(--z-modal) + 1);
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--brand-navy);
  background: var(--white);
  border-radius: var(--radius-xs);
  transform: translateY(-160%);
  transition: transform .2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: var(--z-header);
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: box-shadow .25s var(--ease-out), background .25s;
}
.site-header.is-scrolled { background: rgba(44, 49, 74, .97); box-shadow: var(--shadow-header); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; min-width: 0; height: 100%; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: clamp(210px, 20vw, 278px); height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.1vw, 34px); }
.main-nav > a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--brand-cyan);
  transition: right .22s var(--ease-out);
}
.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible { color: var(--white); }
.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { position: relative; z-index: 2; display: none; flex: 0 0 48px; width: 48px; height: 48px; margin-left: auto; padding: 11px; color: var(--white); background: transparent; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .24s var(--ease-out), opacity .2s; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease-out), background .18s, color .18s, border-color .18s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.97); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 3px; }
.button--small { min-height: 44px; padding: 10px 17px; font-size: .78rem; }
.button--primary { color: var(--brand-navy); background: var(--brand-cyan); }
.button--primary:hover { background: var(--white); }
.button--primary svg { width: 19px; height: 19px; fill: currentColor; }
.button--light { color: var(--brand-navy); background: var(--white); }
.button--light:hover { background: var(--brand-cyan-soft); }
.button--navy { color: var(--white); background: var(--brand-navy); }
.button--navy:hover { background: var(--brand-navy-deep); }
.button--ghost { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .26); }
.button--outline { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .68); }
.button--outline-dark { color: var(--brand-navy); background: transparent; border-color: var(--line); }

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { color: var(--brand-cyan-dark); font-size: 1.2rem; transition: transform .2s var(--ease-out); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--light { color: var(--white); }
.text-link--light span { color: var(--brand-cyan); }

.section-label, .brand-location {
  margin: 0;
  color: var(--brand-cyan-dark);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-label--light { color: var(--brand-cyan); }

.hero {
  display: grid;
  min-height: min(840px, 100vh);
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  padding-top: var(--header-height);
  background: var(--brand-navy);
}
.hero__copy { position: relative; display: flex; overflow: hidden; align-items: center; padding: clamp(72px, 9vw, 132px) clamp(42px, 5vw, 84px) clamp(64px, 8vw, 110px) max(32px, calc((100vw - var(--container)) / 2)); color: var(--white); }
.hero__copy-inner { position: relative; z-index: 2; width: min(100%, 600px); }
.brand-location { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .72); }
.brand-location::before { content: ""; width: 28px; height: 3px; background: var(--brand-cyan); }
.hero h1 { max-width: 10ch; margin: 25px 0 26px; font-size: clamp(3rem, 4.3vw, 4.7rem); font-weight: 400; line-height: .99; letter-spacing: -.035em; }
.hero h1 span { display: block; color: var(--brand-cyan); }
.hero__lead { max-width: 52ch; margin: 0 0 32px; color: rgba(255, 255, 255, .74); font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }
.hero__audience { margin: 34px 0 0; padding-top: 18px; color: rgba(255, 255, 255, .55); border-top: 1px solid var(--line-dark); font-size: .86rem; }
.hero__photo { position: relative; overflow: hidden; margin: 0; background: var(--brand-gray); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 51% center; }
.hero__photo figcaption { position: absolute; right: 22px; bottom: 20px; padding: 9px 12px; color: var(--brand-navy); background: rgba(255, 255, 255, .94); border-radius: var(--radius-xs); font-size: .74rem; }

/* grafismo de linhas (brand-pattern) removido a pedido do cliente */

@keyframes hero-copy-in { from { opacity: .72; transform: translateY(18px); filter: blur(5px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes hero-photo-in { from { clip-path: inset(0 0 0 22%); filter: saturate(.65); } to { clip-path: inset(0); filter: saturate(1); } }
.hero__copy-inner { animation: hero-copy-in .7s var(--ease-out) both; }
.hero__photo img { animation: hero-photo-in .9s var(--ease-out) both; }

.product-section { padding: clamp(88px, 10vw, 148px) 0; background: var(--white); }
.product-layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.55fr); gap: clamp(56px, 8vw, 120px); align-items: start; }
.product-intro { position: sticky; top: calc(var(--header-height) + 42px); }
.product-intro h2 { margin: 18px 0 24px; color: var(--brand-navy); font-size: clamp(2.65rem, 4.2vw, 4.5rem); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
.product-intro > p:not(.section-label) { max-width: 50ch; margin: 0 0 26px; color: var(--muted); font-size: 1.06rem; }
.product-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.product-row {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 54px 1fr 24px;
  gap: 22px;
  align-items: center;
  padding: 30px 26px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.product-row:nth-child(even) { border-left: 1px solid var(--line); }
.product-row:hover, .product-row:focus-visible { color: var(--brand-navy); background: var(--brand-cyan-soft); }
.line-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--brand-cyan-dark); transition: transform .25s var(--ease-out); }
.line-icon svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.product-row:hover .line-icon { transform: scale(1.08); }
.product-row strong { display: block; margin-bottom: 7px; color: var(--brand-navy); font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; }
.product-row small { display: block; color: var(--muted); font-size: .91rem; line-height: 1.45; }
.product-row b { color: var(--brand-cyan-dark); font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; transition: transform .2s var(--ease-out); }
.product-row:hover b { transform: translate(3px, -3px); }

.brands { padding: 82px 0 96px; color: var(--white); background: var(--brands-blue); }
.brands__heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; padding-bottom: 34px; }
.brands__heading h2 { max-width: 580px; margin: 0; font-size: clamp(2.2rem, 3.6vw, 3.8rem); font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }
.brands__heading p { max-width: 360px; margin: 0; color: rgba(255, 255, 255, .7); }
.brands__board {
  display: grid;
  width: min(calc(100% - 64px), var(--container));
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, .2);
}
.partner-logo {
  display: grid;
  min-width: 0;
  height: clamp(100px, 9vw, 128px);
  place-items: center;
  padding: 20px 16px;
  background: var(--white);
}
.partner-logo--negative { background: var(--brand-navy); }
.partner-logo img { width: auto; max-width: 78%; max-height: 58px; object-fit: contain; transition: transform .25s var(--ease-out); }
.partner-logo:hover img { transform: scale(1.06); }

.about { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); min-height: 720px; background: var(--surface); }
.about__photo { position: relative; overflow: hidden; margin: 0; min-height: 680px; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.about__photo figcaption { position: absolute; left: 22px; bottom: 20px; max-width: 320px; padding: 10px 13px; color: var(--brand-navy); background: rgba(255, 255, 255, .94); border-radius: var(--radius-xs); font-size: .76rem; }
.about__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px) max(32px, calc((100vw - var(--container)) / 2)); padding-left: clamp(54px, 7vw, 110px); }
.about__content h2 { max-width: 10ch; margin: 18px 0 28px; color: var(--brand-navy); font-size: clamp(2.8rem, 4.2vw, 4.6rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.about__content > p:not(.section-label) { max-width: 58ch; margin: 0 0 18px; color: var(--muted); }
.brand-slogan { display: block; margin-top: 22px; color: var(--brand-cyan-dark); font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }

.differentials { padding: clamp(92px, 11vw, 160px) 0; color: var(--white); background: var(--brand-navy); }
.differentials__grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(56px, 9vw, 140px); }
.differentials__intro h2 { max-width: 10ch; margin: 18px 0 24px; font-size: clamp(2.7rem, 4.5vw, 4.8rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.differentials__intro > p:not(.section-label) { max-width: 48ch; margin: 0; color: rgba(255, 255, 255, .66); }
.difference-list { border-top: 1px solid var(--line-dark); }
.difference-list article { display: grid; grid-template-columns: 46px 1fr; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.difference-list article > span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--brand-navy); background: var(--brand-cyan); border-radius: 50%; font-family: var(--font-display); font-size: .8rem; font-weight: 700; }
.difference-list h3 { margin: 0 0 7px; font-size: 1.28rem; font-weight: 600; }
.difference-list p { max-width: 58ch; margin: 0; color: rgba(255, 255, 255, .62); }

.contact { padding: clamp(88px, 10vw, 140px) 0; color: var(--brand-navy); background: var(--surface); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.contact .section-label { color: var(--brand-cyan-dark); }
.contact__pitch h2 { max-width: 11ch; margin: 18px 0 24px; font-size: clamp(2.8rem, 4.8vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.contact__pitch > p:not(.section-label) { max-width: 48ch; margin: 0 0 30px; color: var(--muted); font-size: 1.06rem; }
.contact__details { display: flex; flex-direction: column; margin: 0; border-top: 1px solid var(--line); font-style: normal; }
.contact__details a { display: grid; min-height: 92px; grid-template-columns: 1fr 28px; align-items: center; padding: 19px 16px; margin-inline: -16px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s var(--ease-out); }
.contact__details small, .contact__details strong { display: block; overflow-wrap: anywhere; }
.contact__details small { color: var(--brand-cyan-dark); font-size: .78rem; }
.contact__details strong { color: var(--brand-navy); font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.35; }
.contact__details span { grid-row: 1 / span 2; grid-column: 2; color: var(--brand-cyan-dark); font-family: var(--font-display); font-size: 1.25rem; transition: transform .2s var(--ease-out); }
.contact__details a:hover, .contact__details a:focus-visible { background: var(--brand-cyan-soft); }
.contact__details a:hover strong, .contact__details a:focus-visible strong { color: var(--brand-cyan-dark); }
.contact__details a:hover span { transform: translate(3px, -3px); }

.site-footer { color: var(--white); background: var(--brand-navy-deep); }
.footer-main { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; padding-top: 76px; padding-bottom: 62px; }
.footer-brand > img { width: min(100%, 300px); height: auto; }
.footer-brand > p { max-width: 430px; margin: 24px 0; color: rgba(255, 255, 255, .58); }
.social-links { display: flex; flex-wrap: wrap; gap: 24px; }
.social-links a { display: inline-flex; min-height: 44px; align-items: center; color: var(--brand-cyan); font-family: var(--font-display); font-size: .84rem; font-weight: 600; text-decoration: none; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.footer-nav > div { display: flex; flex-direction: column; gap: 7px; }
.footer-nav strong { margin-bottom: 8px; font-family: var(--font-display); font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-nav a, .footer-nav button { display: inline-flex; width: fit-content; min-height: 44px; align-items: center; padding: 0; color: rgba(255, 255, 255, .6); background: none; border: 0; font-size: .88rem; text-align: left; text-decoration: none; cursor: pointer; transition: color .18s; }
.footer-nav a:hover, .footer-nav button:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 26px; color: rgba(255, 255, 255, .4); border-top: 1px solid rgba(255, 255, 255, .1); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a, .footer-bottom button { display: inline-flex; min-height: 44px; align-items: center; color: inherit; background: none; border: 0; padding: 0; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.floating-whatsapp { position: fixed; z-index: var(--z-floating); right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: var(--success); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 10px 24px rgba(18, 22, 38, .24); transition: transform .18s var(--ease-out); }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

.cookie-banner { position: fixed; z-index: var(--z-banner); right: 18px; bottom: 18px; left: 18px; display: grid; max-width: 1160px; grid-template-columns: 1fr auto; gap: 20px; align-items: center; margin-inline: auto; padding: 18px 20px; color: var(--white); background: var(--brand-navy-deep); border-radius: var(--radius-md); box-shadow: var(--shadow-floating); opacity: 0; transform: translateY(18px); transition: opacity .3s var(--ease-out), transform .3s var(--ease-out); }
.cookie-banner.is-open { opacity: 1; transform: none; }
.cookie-banner[hidden], .consent-modal[hidden] { display: none; }
.cookie-banner__content { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.cookie-banner__icon { display: grid; width: 44px; height: 44px; place-items: center; color: var(--brand-cyan); background: rgba(0, 175, 239, .1); border-radius: 50%; font-size: 1.4rem; }
.cookie-banner h2 { margin: 0 0 3px; font-size: 1.06rem; font-weight: 600; }
.cookie-banner p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .82rem; line-height: 1.45; }
.cookie-banner p a { color: var(--brand-cyan); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-banner__actions .button { min-height: 44px; padding: 10px 13px; font-size: .77rem; }

.consent-modal { position: fixed; z-index: var(--z-modal); inset: 0; display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .25s var(--ease-out); }
.consent-modal.is-open { opacity: 1; }
.consent-modal__backdrop { position: absolute; inset: 0; background: rgba(18, 22, 38, .76); backdrop-filter: blur(5px); }
.consent-modal__panel { position: relative; z-index: 1; width: min(100%, 650px); max-height: calc(100vh - 40px); overflow: auto; padding: 36px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-floating); transform: scale(.96) translateY(10px); transition: transform .3s var(--ease-out); }
.consent-modal.is-open .consent-modal__panel { transform: none; }
.consent-modal__panel > h2 { margin: 8px 0 9px; color: var(--brand-navy); font-size: 2rem; font-weight: 600; letter-spacing: -.03em; }
.consent-modal__panel > p:not(.section-label) { margin: 0 0 26px; color: var(--muted); font-size: .9rem; }
.consent-modal__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; color: var(--muted); background: var(--surface); border: 0; border-radius: 50%; font-size: 1.4rem; cursor: pointer; }
.consent-option { position: relative; display: flex; min-height: 76px; justify-content: space-between; gap: 24px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); cursor: pointer; }
.consent-option > div, .consent-option__copy { display: flex; flex-direction: column; }
.consent-option strong { color: var(--brand-navy); font-size: .92rem; }
.consent-option > div span, .consent-option__copy > span { color: var(--muted); font-size: .8rem; }
.always-active { color: var(--success); font-size: .76rem; font-weight: 700; white-space: nowrap; }
.consent-option input { position: absolute; opacity: 0; pointer-events: none; }
.switch { position: relative; flex: 0 0 48px; width: 48px; height: 27px; background: var(--control-off); border-radius: var(--radius-pill); transition: background .2s; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; background: var(--white); border-radius: 50%; box-shadow: 0 2px 5px rgba(18, 22, 38, .2); transition: transform .2s var(--ease-out); }
.consent-option input:checked + .switch { background: var(--brand-cyan-dark); }
.consent-option input:checked + .switch::after { transform: translateX(21px); }
.consent-option input:focus-visible + .switch { outline: 3px solid var(--brand-cyan); outline-offset: 3px; }
.consent-modal__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 26px; }

.reveal { opacity: 1; transform: none; filter: none; }
.js .reveal:not(.is-visible) { opacity: .94; transform: translateY(8px); filter: blur(1px); }
.reveal { transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), filter .55s var(--ease-out); }
.reveal--image { transition-delay: .08s; }

/* Cascata leve para itens irmãos (índice de produtos, marcas, diferenciais, contato).
   O JS adiciona .is-visible de uma vez para o grupo; o atraso vem só do CSS via --i. */
.reveal--stagger { transition-delay: calc(var(--i, 0) * 45ms); }
.reveal--stagger-tight { transition-delay: calc(var(--i, 0) * 18ms); }

/* Foto do "Quem somos": mesma varredura cinematográfica do hero, sob demanda de rolagem. */
.reveal--photo { transition: opacity .3s var(--ease-out); }
.js .reveal--photo:not(.is-visible) { opacity: 1; transform: none; filter: none; }
.reveal--photo img { transition: clip-path .85s var(--ease-out), filter .85s var(--ease-out); }
.js .reveal--photo:not(.is-visible) img { clip-path: inset(0 0 0 16%); filter: saturate(.6); }

/* Legal pages */
.legal-page { background: var(--surface); }
.legal-header { position: relative; }
.legal-main { padding: 48px 0 96px; }
.legal-hero { padding: 74px 0 64px; color: var(--white); background: var(--brand-navy); }
.legal-hero h1 { max-width: 780px; margin: 15px 0 0; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.legal-hero p:not(.section-label):not(.eyebrow) { max-width: 700px; margin: 20px 0 0; color: rgba(255, 255, 255, .68); }
.eyebrow { margin: 0; color: var(--brand-cyan); font-family: var(--font-display); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 24px; height: 2px; margin-right: 8px; vertical-align: middle; background: currentColor; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 52px; align-items: start; }
.legal-toc { position: sticky; top: 28px; display: flex; flex-direction: column; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-toc strong { margin-bottom: 5px; color: var(--brand-navy); font-family: var(--font-display); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-toc a { display: inline-flex; min-height: 40px; align-items: center; color: var(--muted); font-size: .86rem; text-decoration: none; }
.legal-toc a:hover { color: var(--brand-cyan-dark); }
.legal-content { padding: clamp(28px, 5vw, 64px); background: var(--white); border-radius: var(--radius-md); }
.legal-content section + section { margin-top: 42px; padding-top: 42px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 18px; color: var(--brand-navy); font-size: 1.7rem; font-weight: 600; letter-spacing: -.02em; }
.legal-content h3 { margin: 26px 0 10px; color: var(--brand-navy); font-size: 1.08rem; font-weight: 600; }
.legal-content p, .legal-content li { color: var(--muted); font-size: .96rem; }
.legal-content a { color: var(--brand-cyan-dark); }
.legal-content ul { padding-left: 20px; }
.legal-callout { margin: 24px 0; padding: 18px 20px; color: var(--brand-navy); background: var(--brand-cyan-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.legal-placeholder { padding: 2px 5px; color: var(--warning-ink); background: var(--warning-surface); border-radius: var(--radius-xs); font-weight: 700; }

@media (max-width: 1140px) {
  .hero { grid-template-columns: minmax(0, 46%) minmax(0, 54%); }
  .hero__copy { padding-right: 38px; }
  .hero h1 { font-size: clamp(2.8rem, 4.7vw, 4.25rem); }
  .product-layout { grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: 60px; }
  .product-row { grid-template-columns: 48px 1fr 20px; gap: 16px; padding-inline: 18px; }
  .about { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .container { width: min(calc(100% - 40px), var(--container)); }
  .brand img { width: 218px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: flex; overflow: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 24px; color: var(--white); background: var(--brand-navy); border-top: 1px solid rgba(255, 255, 255, .1); opacity: 0; visibility: hidden; pointer-events: none; clip-path: inset(0 0 100% 0); transform: translateY(-8px); transition: clip-path .3s var(--ease-out), transform .3s var(--ease-out), opacity .2s, visibility 0s linear .3s; }
  .main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; clip-path: inset(0); transform: none; transition-delay: 0s; }
  .main-nav > a:not(.button) { padding: 12px 4px; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: .9rem; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav > .button { margin-top: 14px; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero__copy { min-height: 650px; padding: 82px 32px 72px max(20px, calc((100vw - 720px) / 2)); }
  .hero__copy-inner { width: min(100%, 650px); }
  .hero h1 { max-width: 10ch; font-size: clamp(3rem, 9vw, 4.7rem); }
  .hero__photo { min-height: 520px; }
  .product-layout { grid-template-columns: 1fr; gap: 54px; }
  .product-intro { position: static; }
  .product-intro h2 { max-width: 12ch; }
  .brands__board { width: calc(100% - 40px); grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .partner-logo { height: 108px; }
  .about { grid-template-columns: 1fr; }
  .about__photo { min-height: 520px; }
  .about__content { padding: 84px max(20px, calc((100vw - 720px) / 2)); }
  .about__content h2 { max-width: 13ch; }
  .differentials__grid { grid-template-columns: 1fr; gap: 52px; }
  .differentials__intro h2 { max-width: 12ch; }
  .contact__grid { grid-template-columns: 1fr; gap: 64px; }
  .contact__pitch h2 { max-width: 13ch; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { max-width: 520px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner__actions { padding-left: 58px; justify-content: flex-start; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .legal-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand img { width: 184px; }
  .hero__copy { min-height: 660px; padding: 72px 16px 62px; }
  .hero h1 { max-width: 10ch; margin-top: 22px; font-size: clamp(2.45rem, 10.5vw, 3rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .text-link--light { align-self: flex-start; }
  .hero__audience { font-size: .875rem; }
  .hero__photo { min-height: 420px; }
  .hero__photo img { object-position: 58% center; }
  .hero__photo figcaption { right: 12px; bottom: 12px; left: 12px; font-size: .875rem; }
  .product-section { padding: 78px 0; }
  .product-intro h2, .about__content h2, .differentials__intro h2, .contact__pitch h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .product-index { grid-template-columns: 1fr; }
  .product-row:nth-child(even) { border-left: 0; }
  .product-row { min-height: 146px; padding: 24px 4px; }
  .product-row strong { font-size: 1.18rem; }
  .product-row small { font-size: .9rem; }
  .brands { padding-top: 62px; }
  .brands__heading { display: block; padding-bottom: 26px; }
  .brands__heading h2 { font-size: 2.45rem; }
  .brands__heading p { margin-top: 14px; }
  .brands__board { width: calc(100% - 32px); grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-logo { height: 94px; padding: 16px 10px; }
  .partner-logo img { max-width: 82%; max-height: 48px; }
  .about__photo { min-height: 430px; }
  .about__photo figcaption { left: 12px; bottom: 12px; font-size: .875rem; }
  .about__content { padding: 76px 16px; }
  .difference-list article { grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; }
  .difference-list p { font-size: .9rem; }
  .contact__details strong { font-size: .94rem; }
  .footer-main { padding-top: 60px; }
  .footer-nav { grid-template-columns: 1fr; gap: 34px; }
  .footer-nav strong, .footer-nav a, .footer-nav button, .footer-bottom, .social-links a { font-size: .875rem; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .cookie-banner { inset: auto 8px 8px; max-height: calc(100vh - 16px); overflow: auto; padding: 18px; }
  .cookie-banner__content { grid-template-columns: 1fr; }
  .cookie-banner__icon { display: none; }
  .cookie-banner p, .cookie-banner p a, .cookie-banner__actions .button { font-size: .875rem; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; padding-left: 0; }
  .cookie-banner__actions .button { width: 100%; white-space: normal; }
  .consent-modal__panel { padding: 32px 20px 22px; }
  .consent-modal__panel > p:not(.section-label), .consent-option strong, .consent-option > div span, .consent-option__copy > span, .always-active { font-size: .875rem; }
  .consent-option { gap: 12px; }
  .consent-modal__actions { display: grid; grid-template-columns: 1fr; }
  .legal-main { padding: 28px 0 70px; }
  .legal-hero { padding: 48px 0; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-content { padding: 28px 20px; }
}

@media (hover: none) {
  .button:hover, .floating-whatsapp:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
