/* ============================================================
   tQuímica — sitev3 (HTML/CSS/JS estático)
   Paleta alinhada ao site atual tquimica.com.br
   ============================================================ */

/* ---------- Fonts ---------- */
/* Nunito Sans variável (peso 200–1000) — tipografia do site */
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-latin-ext.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-latin.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-italic-latin-ext.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-italic-latin.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Quicksand Bold — apenas no logotipo (header, rodapé, diagnóstico) */
@font-face {
  font-family: "Quicksand";
  src: url("../assets/fonts/Quicksand-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ----------
   Ink scale derived from #00465e (tquimica.com.br primary dark)
   Lime derived from #ccdb29 (tquimica.com.br primary accent)
   ------------------------------------------------------------ */
:root {
  --ink-950: #00465e;
  --ink-900: #00526e;
  --ink-800: #006080;
  --ink-700: #2a7a8e;
  --ink-500: #5a9baa;

  --surface-50: #f2f4f4;
  --surface-100: #e8ecec;
  --surface-200: #d8e0e1;

  --aqua-300: #a8e6de;
  --aqua-400: #7dd6ca;
  --aqua-500: #4dbfb0;
  --aqua-600: #2fa296;

  --lime-400: #ccdb29;
  --lime-500: #b5c424;
  --lime-800: #8B970B;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--surface-50);
  color: var(--ink-950);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--aqua-400);
  color: var(--ink-950);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--aqua-500);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.text-balance {
  text-wrap: balance;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 112px 0;
  }
}

.section--surface {
  background: var(--surface-50);
}

/* ---------- Shared text styles ---------- */
.eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime-800);
}

.eyebrow--on-dark {
  color: var(--lime-400);
}

.eyebrow--lime {
  color: var(--lime-400);
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-950);
}

.section-title--on-dark {
  color: #fff;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 40px;
  }
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn svg {
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

.btn--lime {
  background: var(--lime-400);
  color: var(--ink-950);
  padding: 14px 28px;
}

.btn--lime:hover {
  background: var(--lime-500);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--outline-lime {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.btn--outline-lime:hover {
  border-color: rgba(201, 226, 107, 0.4);
  color: var(--lime-400);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-700);
  transition: color 0.2s;
}

.link-arrow svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.link-arrow:hover {
  color: var(--lime-500);
}

.link-arrow:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   Reveal-on-scroll animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-group .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.reveal-group.is-visible .reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-group.is-visible .reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.is-visible .reveal-item:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.is-visible .reveal-item:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.is-visible .reveal-item:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.is-visible .reveal-item:nth-child(6) { transition-delay: 0.4s; }
.reveal-group.is-visible .reveal-item:nth-child(7) { transition-delay: 0.48s; }
.reveal-group.is-visible .reveal-item:nth-child(8) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-group .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 8px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

/* ---- Scrolled state: lime background ---- */
.header.is-scrolled {
  background: rgba(181, 196 , 36, 0.8);
  border-bottom: 1px solid rgba(0, 70, 94, 0.05);
  box-shadow: 0 2px 12px rgba(0, 70, 94, 0.14);
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 16px;
}

@media (min-width: 1024px) {
  .header__inner {
    padding: 16px 40px;
  }
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__brand img {
  height: 40px;
  width: 40px;
}

.header__brand-scrolled { display: none; }
.header.is-scrolled .header__brand-default { display: none; }
.header.is-scrolled .header__brand-scrolled { display: block; }

/* Default: white text (over hero) */
.header__brand span {
  font-family: "Quicksand", "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.4s;
}

.header.is-scrolled .header__brand span {
  color: var(--ink-950);
  font-size: 18px;
}

.header.is-scrolled .header__brand img {
  width: 32px;
  height: 32px;
}

.header.is-scrolled {
  padding-top: 0;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 24px;
}

/* Default: white/60 links (over hero) */
.header__nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #fff;
}

.header.is-scrolled .header__nav a {
  color: rgba(0, 70, 94, 0.65);
}

.header.is-scrolled .header__nav a:hover {
  color: var(--ink-950);
}

.header__cta {
  display: none;
}

.header__cta--image img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Default CTA: lime-400 bg + ink text */
/* Scrolled CTA: ink-950 bg + lime-400 text (to contrast against lime-500 header) */
.header.is-scrolled .btn--lime {
  background: var(--ink-950);
  color: var(--lime-400);
}

.header.is-scrolled .btn--lime:hover {
  background: var(--ink-900);
}

/* Default: white icon/border */
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 0.4s, color 0.4s;
}

.header.is-scrolled .header__menu-btn {
  border-color: rgba(0, 70, 94, 0.25);
  color: var(--ink-950);
}

.header__menu-btn .icon-close {
  display: none;
}

.header__menu-btn.is-open .icon-menu {
  display: none;
}

.header__menu-btn.is-open .icon-close {
  display: block;
}

@media (min-width: 1280px) {
  .header__nav {
    display: flex;
    gap: 32px;
  }
  .header__cta {
    display: flex;
  }
  .header__menu-btn {
    display: none;
  }
}

/* ---- Header dropdown (desktop) ---- */
.header__dropdown {
  position: relative;
}

.header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.header__dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.header.is-scrolled .header__dropdown-toggle {
  color: rgba(0, 70, 94, 0.65);
}

.header__dropdown:hover .header__dropdown-toggle {
  color: #fff;
}

.header.is-scrolled .header__dropdown:hover .header__dropdown-toggle {
  color: var(--ink-950);
}

.header__dropdown:hover .header__dropdown-toggle svg {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 70, 94, 0.15);
  padding: 8px 0;
  z-index: 100;
}

.header__dropdown:hover .header__dropdown-menu {
  display: block;
}

.header__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  text-transform: none;
  letter-spacing: 0;
  transition: background-color 0.15s, color 0.15s;
}

.header__dropdown-menu a:hover {
  background: var(--surface-50);
  color: var(--ink-950);
}

/* ---- Drawer submenu (mobile) ---- */
.drawer__item {
  border-bottom: 1px solid var(--surface-100);
}

.drawer__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-700);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.drawer__item summary::marker {
  content: "";
}

.drawer__item summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--ink-500);
  border-bottom: 1.5px solid var(--ink-500);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.drawer__item[open] > summary::after {
  transform: rotate(-135deg);
}

.drawer__submenu {
  display: flex;
  flex-direction: column;
  padding: 0 0 8px;
}

.drawer__submenu a {
  padding: 12px 24px 12px 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-500);
  border-bottom: none;
}

.drawer__submenu a:hover {
  background: var(--surface-50);
  color: var(--ink-950);
}

/* ============================================================
   Mobile drawer (right-to-left)
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -8px 0 40px rgba(0, 70, 94, 0.18);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--surface-200);
}

.drawer__header .header__brand span {
  color: var(--ink-950);
  font-size: 17px;
}

.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--surface-200);
  color: var(--ink-700);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.drawer__close:hover {
  background: var(--surface-100);
  color: var(--ink-950);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}

.drawer__nav a {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-700);
  border-bottom: 1px solid var(--surface-100);
  transition: background-color 0.15s, color 0.15s;
}

.drawer__nav a:hover {
  background: var(--surface-50);
  color: var(--ink-950);
}

.drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--surface-200);
}

.drawer__footer .btn--lime {
  background: var(--ink-950);
  color: var(--lime-400);
}

.drawer__footer .btn--lime:hover {
  background: var(--ink-900);
}

@media (min-width: 1280px) {
  .drawer,
  .drawer-overlay {
    display: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-950);
  padding: 128px 0 80px;
}

@media (min-width: 1024px) {
  .hero {
    padding: 176px 0 112px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  animation: hero-kenburns 2.4s var(--ease) forwards;
}

.hero__bg-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink-950) 0%, rgba(10, 30, 38, 0.92) 55%, rgba(10, 30, 38, 0.35) 100%);
}

.hero__overlay--vert {
  background: linear-gradient(to top, var(--ink-950) 0%, rgba(10, 30, 38, 0.15) 55%, rgba(10, 30, 38, 0.55) 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(140px);
}

.hero__glow--aqua {
  top: -10%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: rgba(95, 201, 188, 0.15);
  animation: hero-glow-aqua 12s ease-in-out infinite;
}

.hero__glow--lime {
  bottom: -15%;
  left: -15%;
  width: 480px;
  height: 480px;
  background: rgba(201, 226, 107, 0.1);
  filter: blur(160px);
  animation: hero-glow-lime 14s ease-in-out infinite 2s;
}

.hero__content {
  position: relative;
}

.hero__copy {
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime-400);
}

.hero__title {
  text-wrap: balance;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 68px;
  }
}

.hero__subtitle {
  margin-top: 24px;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* Stats bar */
.hero__stats-wrap {
  position: relative;
  margin-top: 80px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 24px;
  text-align: center;
  background: rgba(10, 30, 38, 0.6);
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease);
}

.hero__stat:hover {
  transform: translateY(-4px);
}

.hero__stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--lime-400);
}

@media (min-width: 1024px) {
  .hero__stat-value {
    font-size: 36px;
  }
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Intent paths
   ============================================================ */
.intent__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .intent__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.intent__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 32px;
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.3s var(--ease);
}

.intent__card:hover {
  border-color: var(--lime-400);
  /* box-shadow: 0 24px 60px -24px rgba(204, 219, 41, 0.45); */
  transform: translateY(-8px);
}

.intent__card:active {
  transform: translateY(-8px) scale(0.98);
}

.intent__card-glow {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 192px;
  height: 192px;
  border-radius: 9999px;
  background: rgba(95, 201, 188, 0);
  filter: blur(64px);
  pointer-events: none;
  transition: background-color 0.5s;
}

.intent__card:hover .intent__card-glow {
  background: rgba(204, 219, 41, 0.15);
}

.intent__card-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--lime-800);
}

.intent__card-title {
  margin-top: 16px;
  text-wrap: balance;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
}

.intent__card-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-900);
}

.intent__card-cta {
  position: relative;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-950);
  transition: color 0.2s;
}

.intent__card-cta svg {
  transition: transform 0.2s;
}

.intent__card:hover .intent__card-cta {
  color: var(--lime-500);
}

.intent__card:hover .intent__card-cta svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   Statement
   ============================================================ */
.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-950);
  padding: 96px 0;
}

@media (min-width: 1024px) {
  .statement {
    padding: 144px 0;
  }
}

.statement__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.statement__bg-img {
  position: absolute;
  inset: 0;
  animation: bg-breathe 24s ease-in-out infinite;
}

.statement__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .statement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 38, 0.2);
} */

/* .statement__overlay--grad {
  background: linear-gradient(to top, var(--ink-950) 0%, rgba(10, 30, 38, 0.6) 50%, rgba(10, 30, 38, 0.7) 100%);
} */

.statement__top-line {
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(95, 201, 188, 0.6), transparent);
  pointer-events: none;
}

.statement__content {
  position: relative;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

@media (min-width: 1024px) {
  .statement__content {
    padding: 0 40px;
  }
}

.statement__title {
  text-wrap: balance;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

@media (min-width: 1024px) {
  .statement__title {
    font-size: 48px;
  }
}

.statement__title span {
  color: var(--lime-400);
}

.statement__desc {
  margin: 24px auto 0;
  max-width: 900px;
  text-wrap: balance;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  color: rgba(255, 255, 255, 1);
}

/* ============================================================
   Markets
   ============================================================ */
.markets__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.markets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: rgba(10, 30, 38, 0.08);
}

@media (min-width: 640px) {
  .markets__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.markets__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  background: #fff;
  padding: 24px;
  transition: background-color 0.2s, transform 0.3s var(--ease);
}

.markets__card:hover {
  background: var(--lime-500);
  transform: scale(1.03);
  z-index: 1;
}

.markets__card:hover .markets__card-icon {
  color: var(--ink-950);
}

@media (min-width: 1024px) {
  .markets__card {
    padding: 28px;
  }
}

.markets__card-icon {
  display: inline-flex;
  color: var(--lime-800);
}

.markets__card-icon svg {
  width: 24px;
  height: 24px;
}

.markets__card-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
}

@media (min-width: 1024px) {
  .markets__card-name {
    font-size: 18px;
  }
}

.markets__card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink-950);
  padding: 24px;
  transition: background-color 0.2s;
}

@media (min-width: 1024px) {
  .markets__card--cta {
    padding: 28px;
  }
}

.markets__card--cta:hover {
  background: var(--ink-900);
}

.markets__card--cta .markets__card-icon {
  color: rgba(255, 255, 255, 0.3);
}

.markets__card-cta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lime-400);
}

@media (min-width: 1024px) {
  .markets__card-cta-label {
    font-size: 18px;
  }
}

.markets__card-cta-label svg {
  transition: transform 0.2s;
}

.markets__card--cta:hover .markets__card-cta-label svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   Cases / Quem confia
   ============================================================ */
.cases__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cases__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cases__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  transition: transform 0.5s, box-shadow 0.5s;
}

.cases__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -24px rgba(15, 44, 56, 0.18);
}

.cases__card-media {
  position: relative;
  height: 176px;
  overflow: hidden;
  background: var(--surface-100, #eef2f3);
}

.cases__card-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--surface-200, #c5d0d4);
}

.cases__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cases__card:hover .cases__card-media img {
  transform: scale(1.05);
}

.cases__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.cases__card-segment {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime-800);
}

.cases__card-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-950);
}

.cases__card-excerpt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-900);
}

.cases__testimonials {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .cases__testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 32px;
}

@media (min-width: 1024px) {
  .testimonial {
    padding: 40px;
  }
}

.testimonial svg {
  margin-bottom: 16px;
  color: var(--lime-400);
}

.testimonial blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-950);
}

.testimonial figcaption {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
}

/* ============================================================
   Client logos marquee
   ============================================================ */
.logos {
  border-top: 1px solid rgba(10, 30, 38, 0.06);
  border-bottom: 1px solid rgba(10, 30, 38, 0.06);
  background: var(--surface-100);
  padding: 48px 0;
}

.logos__label {
  margin-bottom: 32px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime-800);
}

.logos__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos__track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 36s linear infinite;
}

.logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: rgba(10, 30, 38, 0.25);
  filter: grayscale(1);
  transition: color 0.2s;
}

.logos__item:hover {
  color: rgba(10, 30, 38, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .logos__track {
    animation: none;
  }
}

/* ============================================================
   ESG teaser
   ============================================================ */
.esg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-950);
}

.esg__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.esg__bg-img {
  position: absolute;
  inset: 0;
  animation: bg-breathe 26s ease-in-out infinite;
}

.esg__bg-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.esg__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink-950) 0%, rgba(10, 30, 38, 0.75) 55%, rgba(10, 30, 38, 0.15) 100%);
}

.esg__content {
  position: relative;
}

.esg__title {
  max-width: 640px;
}

.esg__desc {
  margin-top: 20px;
  max-width: 448px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.esg__cta {
  margin-top: 32px;
}

/* ============================================================
   Knowledge
   ============================================================ */
.knowledge__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.knowledge__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .knowledge__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.knowledge__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  transition: transform 0.5s, box-shadow 0.5s;
}

.knowledge__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -24px rgba(15, 44, 56, 0.18);
}

.knowledge__card-media {
  position: relative;
  height: 176px;
  overflow: hidden;
}

.knowledge__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.knowledge__card:hover .knowledge__card-media img {
  transform: scale(1.05);
}

.knowledge__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.knowledge__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.knowledge__card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime-800);
}

.knowledge__card-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-600);
}

.knowledge__card-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-950);
  transition: color 0.2s;
}

.knowledge__card:hover .knowledge__card-title {
  text-decoration: underline;
}

.knowledge__card-excerpt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-900);
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter {
  background: #fff;
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .newsletter {
    padding: 64px 0;
  }
}

.newsletter__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

@media (min-width: 1024px) {
  .newsletter__panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* .newsletter__copy {
  max-width: 28rem;
} */

.newsletter__title {
  text-wrap: balance;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter__form {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .newsletter__form {
    width: auto;
  }
}

.newsletter__input,
.newsletter__select {
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  background: var(--surface-50);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--ink-950);
  font-family: inherit;
}

.newsletter__input::placeholder {
  color: var(--ink-500);
}

@media (min-width: 640px) {
  .newsletter__input {
    width: 240px;
  }
}

.newsletter__select-wrap {
  position: relative;
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter__select-wrap {
    width: 176px;
  }
}

.newsletter__select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.newsletter__select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-500);
  pointer-events: none;
}

.newsletter__submit {
  padding: 14px 24px;
  font-size: 12px;
}

.newsletter__aside {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter__feedback {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter__feedback p {
  margin: 0;
}

.newsletter__feedback-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.newsletter__feedback--success {
  background: #f3f8e8;
  border: 1px solid color-mix(in srgb, var(--lime-400) 55%, #ffffff);
  color: var(--ink-950);
}

.newsletter__feedback--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink-950);
  color: #fff;
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand img {
  height: 32px;
  width: 32px;
}

.footer__brand span {
  font-family: "Quicksand", "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.footer__desc {
  margin-top: 16px;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contacts {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contacts p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contacts p svg {
  flex-shrink: 0;
  color: var(--lime-400);
}

.footer__contacts .footer__address svg {
  margin-top: 2px;
  align-self: flex-start;
}

.footer__socials {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, color 0.2s;
}

.footer__social:hover {
  border-color: rgba(138, 224, 212, 0.4);
  color: var(--lime-400);
}

.footer__col {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .footer__col {
    border-top: none;
  }
}

.footer__col-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 16px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.footer__col-title::-webkit-details-marker {
  display: none;
}

.footer__col-title::marker {
  content: "";
}

.footer__col-title::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.footer__col[open] > .footer__col-title::after {
  transform: rotate(-135deg);
}

@media (min-width: 1024px) {
  .footer__col-title {
    padding: 0 0 16px;
    cursor: default;
  }

  .footer__col-title::after {
    display: none;
  }
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 16px;
}

@media (min-width: 1024px) {
  .footer__col ul {
    padding: 0;
  }
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--lime-400);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__bottom a {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer__bottom a:hover {
  opacity: 1;
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
}

.whatsapp-fab__ring {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 9999px;
  background: #25d366;
  animation: pulse-ring 2.6s var(--ease) infinite;
}

.whatsapp-fab__tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  white-space: nowrap;
  border-radius: 8px;
  background: var(--ink-950);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab__ring {
    display: none;
  }
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes hero-kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

@keyframes hero-glow-aqua {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

@keyframes hero-glow-lime {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.55; }
}

@keyframes bg-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-img,
  .hero__glow--aqua,
  .hero__glow--lime,
  .statement__bg-img,
  .esg__bg-img {
    animation: none;
  }
}

/* ============================================================
   Internal pages — breadcrumb bar
   ============================================================ */
.breadcrumb {
  padding: 0 0 28px;
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  padding: 0 8px;
  color: var(--ink-500);
}

.breadcrumb a {
  color: var(--ink-700);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--ink-950);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink-500);
}

.breadcrumb--on-dark a { color: rgba(255, 255, 255, 0.55); }
.breadcrumb--on-dark a:hover { color: #fff; }
.breadcrumb--on-dark [aria-current="page"] { color: rgba(255, 255, 255, 0.35); }
.breadcrumb--on-dark li + li::before { color: rgba(255, 255, 255, 0.25); }

/* ============================================================
   Internal pages — page hero
   ============================================================ */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-950);
  padding: 88px 0 80px;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 148px 0 112px;
  }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink-950) 0%, rgba(10, 30, 38, 0.9) 60%, rgba(10, 30, 38, 0.5) 100%);
}

.page-hero__content {
  position: relative;
}

.page-hero__title {
  text-wrap: balance;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-top: 20px;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 52px;
    max-width: 50%;
  }
}

.page-hero__subtitle {
  margin-top: 20px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

/* active nav link on internal pages */
.header__nav a[aria-current="page"] {
  color: #fff;
}

.header.is-scrolled .header__nav a[aria-current="page"] {
  color: var(--ink-950);
}

/* ============================================================
   About — Nossa História
   ============================================================ */
.about-historia {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .about-historia {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.about-historia__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-900);
}

.about-historia__body p + p {
  margin-top: 18px;
}

.about-historia__media {
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-historia__media {
    position: sticky;
    top: 96px;
  }
}

.about-historia__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-mvv {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .about-mvv {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-mvv__card {
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: var(--surface-50);
  padding: 24px;
}

.about-mvv__label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime-800);
  margin-bottom: 10px;
}

.about-mvv__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-950);
}

.about-mvv__manifesto {
  margin-top: 40px;
  max-width: 48rem;
}

.about-mvv__manifesto p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
}

.about-mvv__manifesto p + p {
  margin-top: 1em;
}

.about-mvv__manifesto h2,
.about-mvv__manifesto h3,
.about-mvv__manifesto h4 {
  color: var(--ink-950);
  margin-bottom: 0.5em;
}

.about-mvv__manifesto ul,
.about-mvv__manifesto ol {
  margin: 1em 0;
  padding-left: 1.25em;
  color: var(--ink-700);
}

/* ============================================================
   About — Laboratório & P&D
   ============================================================ */
.about-lab__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .about-lab__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-lab__card {
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 36px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.about-lab__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -24px rgba(15, 44, 56, 0.18);
}

.about-lab__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-50);
  border: 1px solid rgba(10, 30, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime-500);
}

.about-lab__icon svg {
  width: 22px;
  height: 22px;
}

.about-lab__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-700);
  margin-bottom: 8px;
}

.about-lab__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-950);
  margin-bottom: 14px;
}

.about-lab__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
}

/* ============================================================
   About — Equipe
   ============================================================ */
.about-team__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-team__card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.about-team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -24px rgba(15, 44, 56, 0.18);
}

.about-team__photo {
  height: 260px;
  overflow: hidden;
  background: var(--surface-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-200);
}

.about-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-team__card:hover .about-team__photo img {
  transform: scale(1.05);
}

.about-team__info {
  padding: 20px 24px 24px;
  border-top: 0.5px solid var(--surface-100);
}

.about-team__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-950);
}

.about-team__role {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-700);
}

/* ============================================================
   Products page — filter bar
   ============================================================ */
.products-filters {
  background: #fff;
  border-bottom: 0.5px solid var(--surface-200);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 10;
}

.products-filters__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.products-filters__inner .filter-group:nth-child(2) {
  margin-left: auto;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-500);
  white-space: nowrap;
}

.filter-tabs {
  display: flex;
  gap: 4px;
}

.filter-tab {
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
  color: var(--ink-700);
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-tab:hover {
  background: var(--surface-50);
}

.filter-tab.is-active {
  background: var(--ink-950);
  color: #fff;
  border-color: var(--ink-950);
}

.filter-select-wrap {
  position: relative;
}

.filter-select {
  appearance: none;
  padding: 7px 36px 7px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  color: var(--ink-950);
  background: #fff;
  cursor: pointer;
}

.filter-select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-500);
  pointer-events: none;
}

/* ============================================================
   Products page — line overview cards
   ============================================================ */
.products-lines {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .products-lines {
    grid-template-columns: 1fr 1fr;
  }
}

.products-line-card {
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 32px;
}

.products-line-card__badge {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-700);
  margin-bottom: 10px;
}

.products-line-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-50);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

.products-line-card__logo {
  height: 48px;
  width: auto;
}

.products-line-card__name {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 10px;
}

.products-line-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-950);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--surface-200);
}

.products-line-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.products-line-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-950);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--surface-100);
}

.products-line-card__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime-500);
  flex-shrink: 0;
}

/* ============================================================
   Products page — product cards grid
   ============================================================ */
.products-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.product-card--extra {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -24px rgba(15, 44, 56, 0.18);
}

.product-card__media {
  height: 180px;
  overflow: hidden;
  background: var(--surface-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-200);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 20px 24px 24px;
}

.product-card__tags {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-card__line {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-700);
}

.product-card__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-500);
  opacity: 0.4;
}

.product-card__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-700);
}

.product-card__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin-bottom: 6px;
}

.product-card__info {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-700);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 0.5px solid var(--surface-100);
}

.product-card__docs {
  display: flex;
  gap: 16px;
}

.product-card__doc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-600);
  transition: color 0.2s;
}

.product-card__doc:hover {
  color: var(--ink-950);
}

.products-load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn--outline-dark {
  border: 1px solid rgba(10, 30, 38, 0.2);
  color: var(--ink-950);
  padding: 14px 32px;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}

/* ============================================================
   Services page
   ============================================================ */
.services-grid {
  display: grid;
  gap: 1px;
  background: var(--surface-200);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--surface-200);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: #fff;
  padding: 36px 32px;
  transition: background-color 0.2s;
}

.service-card:hover {
  background: var(--surface-50);
}

.service-card__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-700);
  margin-bottom: 14px;
}

.service-card__tag-link {
  color: var(--aqua-600);
  transition: color 0.2s;
}

.service-card__tag-link:hover {
  color: var(--ink-950);
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-950);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--surface-200);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-950);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--surface-100);
}

.service-card__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime-500);
  flex-shrink: 0;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-600);
  transition: color 0.2s, gap 0.2s;
}

.service-card__cta:hover {
  color: var(--ink-950);
  gap: 10px;
}

.services-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-950);
  padding: 96px 0;
  text-align: center;
}

.services-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,70,94,0.82) 0%, rgba(0,70,94,0.72) 100%);
}

.services-cta__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.services-cta__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 12px;
}

.services-cta__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 32px;
}

/* ============================================================
   Markets page — grid
   ============================================================ */
.markets-page__grid {
  display: grid;
  gap: 1px;
  background: var(--surface-200);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--surface-200);
}

@media (min-width: 768px) {
  .markets-page__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.market-card {
  background: #fff;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 16px;
  transition: background-color 0.2s;
}

.market-card:hover {
  background: var(--surface-50);
}

.market-card__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--lime-400);
  line-height: 1;
  padding-top: 3px;
}

.market-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin-bottom: 8px;
}

.market-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-950);
  margin-bottom: 14px;
}

.market-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-600);
  transition: color 0.2s, gap 0.2s;
}

.market-card__link:hover {
  color: var(--ink-950);
  gap: 10px;
}

/* ============================================================
   Markets page — compliance CTA
   ============================================================ */
.markets-compliance {
  margin-top: 64px;
  padding: 48px;
  border-radius: 24px;
  background: var(--surface-50);
  border: 1px solid rgba(10, 30, 38, 0.08);
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .markets-compliance {
    grid-template-columns: 1fr auto;
  }
}

.markets-compliance__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin-bottom: 10px;
  /* max-width: 480px; */
}

.markets-compliance__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 24px;
  max-width: 440px;
}

.markets-compliance__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
}

.markets-compliance__badge {
  background: #fff;
  border: 1px solid rgba(10, 30, 38, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-700);
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   ESG page
   ============================================================ */
.esg-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--surface-200);
  margin-top: 48px;
  overflow-y: hidden;
}

.esg-tab {
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
  color: var(--ink-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.esg-tab:hover {
  color: var(--ink-950);
}

.esg-tab.is-active {
  color: var(--ink-950);
  border-bottom-color: var(--ink-950);
}

.esg-panel {
  display: none;
  padding: 56px 0 0;
}

.esg-panel.is-active {
  display: block;
}

.esg-pillar-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .esg-pillar-grid {
    grid-template-columns: 1fr 360px;
    gap: 64px;
  }
}

.esg-pillar__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-700);
  margin-bottom: 12px;
}

.esg-pillar__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 12px;
}

.esg-pillar__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 28px;
}

.esg-pillar-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.esg-pillar-badge {
  background: var(--surface-50);
  border: 1px solid rgba(10, 30, 38, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-950);
  text-align: center;
  line-height: 1.3;
}

.esg-pillar-media {
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  background: var(--surface-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.esg-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 8 Princípios */
.esg-principles__intro {
  max-width: 560px;
  margin-bottom: 40px;
}

.esg-principles__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-top: 10px;
}

.esg-principles-list {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .esg-principles-list {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
  }
}

.esg-principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--surface-200);
}

.esg-principle__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime-500);
  flex-shrink: 0;
  min-width: 20px;
  line-height: 1.5;
}

.esg-principle__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-950);
}

/* Diagnóstico */
.esg-diagnostic {
  display: grid;
  gap: 20px;
}

@media (min-width: 1024px) {
  .esg-diagnostic {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.esg-quiz {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  padding: 20px 10px;

  @media (min-width: 1024px) {
    padding: 36px 32px;
  }
}

.esg-quiz__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-700);
  margin-bottom: 12px;
}

.esg-quiz__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin-bottom: 10px;
}

.esg-quiz__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--surface-200);
}

.esg-quiz__step-label {
  margin: 20px 0 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
}

.quiz-step__question {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-950);
  margin-bottom: 16px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-option {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(10, 30, 38, 0.1);
  background: var(--surface-50);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.quiz-option:hover {
  border-color: var(--ink-700);
  color: var(--ink-950);
}

.quiz-option.is-selected {
  border-color: var(--ink-950);
  background: var(--ink-950);
  color: #fff;
}

.quiz-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.quiz-nav .btn--outline-dark:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.esg-result {
  background: var(--ink-950);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 32px;
}

.esg-result__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.esg-result__level {
  font-size: 28px;
  font-weight: 700;
  color: var(--lime-400);
  margin-bottom: 14px;
}

.esg-result__bar-wrap {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.esg-result__bar-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(to right, var(--lime-400), var(--aqua-500));
  border-radius: 9999px;
}

.esg-result__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--surface-50);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.esg-result__form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.esg-result__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esg-result__input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
}

.esg-result__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.esg-result__submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-intents {
  display: grid;
  gap: 1px;
  /* margin-top: 48px; */
  background: var(--surface-200);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--surface-200);
}

@media (min-width: 768px) {
  .contact-intents {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-intent {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background-color 0.2s;
}

.contact-intent:hover {
  background: var(--surface-50);
}

.contact-intent__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--lime-500);
  margin-bottom: 14px;
}

.contact-intent__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 10px;
}

.contact-intent__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  flex: 1;
  margin-bottom: 18px;
}

.contact-intent__link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-600);
  transition: color 0.2s;
}

.contact-intent__link:hover {
  color: var(--ink-950);
}

.contact-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--surface-200);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-tab {
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
  color: var(--ink-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.contact-tab:hover { color: var(--ink-950); }

.contact-tab.is-active {
  color: var(--ink-950);
  border-bottom-color: var(--ink-950);
}

.contact-panel { display: none; }
.contact-panel.is-active { display: block; }

.contact-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout {
    /* grid-template-columns: 1fr 272px; */
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  background: var(--surface-50);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink-950);
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--ink-700);
  outline: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--ink-500);
}

.contact-form__select {
  appearance: none;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-500);
  pointer-events: none;
}

.contact-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--ink-950);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.contact-form__submit:hover {
  background: var(--ink-900);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-sidebar__section {
  display: flex;
  flex-direction: column;
}

.contact-sidebar__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-bottom: 10px;
}

.contact-sidebar__phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-950);
  display: block;
  margin-bottom: 4px;
}

.contact-sidebar__hours {
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 14px;
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn--whatsapp:hover { background: #1fba59; }

.contact-sidebar__address {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-700);
}

.contact-sidebar__map {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-100);
  border: 1px solid rgba(10, 30, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.contact-sidebar__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* ============================================================
   Conhecimento page
   ============================================================ */
.kn-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--surface-200);
  margin-bottom: 32px;
  overflow-y: hidden;
}

.kn-tab {
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
  color: var(--ink-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.kn-tab:hover { color: var(--ink-950); }

.kn-tab.is-active {
  color: var(--ink-950);
  border-bottom-color: var(--ink-950);
}

.kn-panel { display: none; }
.kn-panel.is-active { display: block; }

.kn-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.kn-filter {
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
  color: var(--ink-700);
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.kn-filter:hover { background: var(--surface-50); }

.kn-filter.is-active {
  background: var(--ink-950);
  color: #fff;
  border-color: var(--ink-950);
}

/* Materials grid */
.materials-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
}

.material-card {
  border-radius: 20px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(15, 44, 56, 0.18);
}

.material-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-50);
  border: 1px solid rgba(10, 30, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-600);
}

.material-card__format {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-700);
}

.material-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  flex: 1;
}

.material-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-600);
  transition: color 0.2s;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 0.5px solid var(--surface-100);
}

.material-card__cta:hover { color: var(--ink-950); }

/* ============================================================
   Conhecimento — Cases panel (2 colunas)
   ============================================================ */
.cases-kn-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .cases-kn-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cases-kn-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.cases-kn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(15, 44, 56, 0.18);
}

.cases-kn-card__media {
  height: 200px;
  overflow: hidden;
  background: var(--surface-200);
}

.cases-kn-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cases-kn-card:hover .cases-kn-card__media img {
  transform: scale(1.04);
}

.cases-kn-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 28px;
}

.cases-kn-card__segment {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-700);
  margin-bottom: 10px;
}

.cases-kn-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin-bottom: 10px;
}

.cases-kn-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
  flex: 1;
  margin-bottom: 16px;
}

.cases-kn-card__cta {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-600);
  padding-top: 16px;
  border-top: 0.5px solid var(--surface-100);
  transition: color 0.2s;
}

.cases-kn-card__cta:hover { color: var(--ink-950); }

/* ============================================================
   Conhecimento — Materials panel (com imagem + botão)
   ============================================================ */
.material-card__media {
  height: 130px;
  overflow: hidden;
  background: var(--surface-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-bottom: 16px;
}

.material-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.material-card__download {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--ink-950);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  margin-top: auto;
}

.material-card__download:hover { background: var(--ink-900); }

/* Newsletter inline (tab materiais) */
.kn-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: var(--surface-50);
}

.kn-newsletter__copy { flex: 1; min-width: 200px; }

.kn-newsletter__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 4px;
}

.kn-newsletter__desc {
  font-size: 13px;
  color: var(--ink-700);
  opacity: 0.7;
}

.kn-newsletter__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kn-newsletter__input {
  border-radius: 9999px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  background: #fff;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--ink-950);
  font-family: inherit;
  min-width: 200px;
}

.kn-newsletter__btn {
  padding: 11px 24px;
  background: var(--ink-950);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.kn-newsletter__btn:hover { background: var(--ink-900); }

/* ============================================================
   Marca Própria page
   ============================================================ */
.pl-intro-grid {
  display: grid;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .pl-intro-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.pl-intro__body p { font-size: 16px; line-height: 1.8; color: var(--ink-700); }
.pl-intro__body p + p { margin-top: 16px; }

.pl-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 640px) { .pl-benefits { grid-template-columns: 1fr 1fr; } }

.pl-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-50);
  border: 1px solid rgba(10, 30, 38, 0.08);
}

.pl-benefit__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-400);
  flex-shrink: 0;
}

.pl-benefit__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-950);
  line-height: 1.4;
}

.pl-intro__media {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
}

.pl-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pl-steps-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) { .pl-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pl-steps-grid { grid-template-columns: repeat(4, 1fr); } }

.pl-step {
  border-radius: 20px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 28px 24px;
}

.pl-step__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--lime-500);
  line-height: 1;
  margin-bottom: 14px;
}

.pl-step__title { font-size: 16px; font-weight: 700; color: var(--ink-950); margin-bottom: 8px; }
.pl-step__desc { font-size: 14px; line-height: 1.6; color: var(--ink-700); }

/* ============================================================
   Diagnóstico landing page
   ============================================================ */
.diag-header {
  background: #fff;
  border-bottom: 0.5px solid var(--surface-200);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.diag-header__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.diag-header__brand { display: flex; align-items: center; gap: 10px; }
.diag-header__brand span {
  font-family: "Quicksand", "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-950);
}

.diag-header__back {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.diag-header__back:hover { color: var(--ink-950); }

.diag-hero {
  position: relative;
  background: var(--ink-950);
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.diag-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.diag-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.diag-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.diag-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.diag-hero__content {
  position: relative;
  z-index: 1;
}

.diag-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime-400);
  margin-bottom: 24px;
}

.diag-hero__eyebrow .sep { color: rgba(255, 255, 255, 0.2); }

.diag-hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 20px;
  text-wrap: balance;
}

@media (min-width: 768px) { .diag-hero__title { font-size: 44px; } }

.diag-hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 48px;
}

.diag-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.diag-hero__stat-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.diag-hero__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}

/* Quiz */
.diag-quiz-wrap {
  background: #fff;
  padding: 56px 24px;
}

.diag-quiz-inner {
  max-width: 680px;
  margin: 0 auto;
}

.diag-progress {
  height: 4px;
  background: var(--surface-100);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 28px;
}

.diag-progress__fill {
  height: 100%;
  background: var(--lime-500);
  border-radius: 9999px;
  transition: width 0.4s var(--ease);
}

.diag-step__meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.diag-step__meta em {
  color: var(--ink-700);
  font-style: normal;
}

.diag-step { display: none; }
.diag-step.is-active { display: block; }

.diag-step__question {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-950);
  margin-bottom: 20px;
}

.diag-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.diag-option {
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(10, 30, 38, 0.1);
  background: var(--surface-50);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-700);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.diag-option:hover { border-color: var(--ink-700); color: var(--ink-950); }
.diag-option.is-selected { border-color: var(--ink-950); background: var(--ink-950); color: #fff; }

.diag-nav { display: flex; gap: 10px; }

.diag-nav__prev {
  padding: 14px 22px;
  border-radius: 9999px;
  border: 1px solid rgba(10, 30, 38, 0.15);
  background: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-700);
  cursor: pointer;
  transition: background 0.2s;
}

.diag-nav__prev:disabled { opacity: 0.3; cursor: not-allowed; }
.diag-nav__prev:not(:disabled):hover { background: var(--surface-50); color: var(--ink-950); }

.diag-nav__next {
  flex: 1;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  color: var(--ink-950);
  background: var(--lime-400);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}

.diag-nav__next:hover { background: var(--lime-500); }

.diag-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
}

/* Capture form */
.diag-capture {
  background: var(--surface-50);
  padding: 64px 24px;
  text-align: center;
  display: none;
}

.diag-capture.is-visible { display: block; }

.diag-capture__inner { max-width: 520px; margin: 0 auto; }

.diag-capture__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 8px;
}

.diag-capture__subtitle {
  font-size: 15px;
  color: var(--ink-700);
  margin-bottom: 32px;
}

.diag-capture__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.diag-capture__field { display: flex; flex-direction: column; gap: 5px; }

.diag-capture__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.diag-capture__input,
.diag-capture__select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(10, 30, 38, 0.12);
  background: #fff;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink-950);
  font-family: inherit;
}

.diag-capture__select { appearance: none; }

.diag-capture__submit {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--lime-400);
  color: var(--ink-950);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.diag-capture__submit:hover { background: var(--lime-500); }
.diag-capture__note { font-size: 12px; color: var(--ink-500); text-align: center; margin-top: 8px; }

/* Social proof */
.diag-proof {
  background: var(--surface-50);
  padding: 56px 24px;
  text-align: center;
  border-top: 0.5px solid var(--surface-200);
}

.diag-proof__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  margin-bottom: 32px;
}

.diag-proof__grid {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

@media (min-width: 640px) { .diag-proof__grid { grid-template-columns: repeat(3, 1fr); } }

.diag-testimonial {
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  padding: 24px;
  text-align: left;
}

.diag-testimonial__quote {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-950);
  margin-bottom: 14px;
}

.diag-testimonial__author {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

/* Minimal footer */
.diag-footer {
  background: var(--ink-950);
  padding: 18px 24px;
}

.diag-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.diag-footer__links { display: flex; gap: 16px; }
.diag-footer__links a { color: rgba(255, 255, 255, 0.45); font-size: 12px; transition: color 0.2s; }
.diag-footer__links a:hover { color: #fff; }

/* ============================================================
   Contato — Trabalhe conosco layout (com imagem)
   ============================================================ */
.contact-vagas-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-vagas-layout { grid-template-columns: 2fr 1fr; gap: 48px; }
}

.contact-vagas-media {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: var(--surface-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

.contact-vagas-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* File upload */
.contact-form__upload {
  width: 100%;
  border-radius: 10px;
  border: 1px dashed rgba(10, 30, 38, 0.2);
  background: var(--surface-50);
  padding: 20px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form__upload:hover { border-color: var(--ink-700); background: #fff; color: var(--ink-700); }

/* Fale conosco — sidebar simples */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-sidebar__section {}

.contact-info-sidebar__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-bottom: 8px;
}

.contact-info-sidebar__email {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-950);
  display: block;
  margin-bottom: 2px;
}

.contact-info-sidebar__phone {
  font-size: 14px;
  color: var(--ink-700);
}

.contact-info-sidebar__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
}

/* ============================================================
   Article page
   ============================================================ */
/* article-meta on dark hero */
.article-meta--on-dark .article-meta__category {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.article-meta--on-dark .article-meta__sep { color: rgba(255, 255, 255, 0.2); }

.article-meta--on-dark .article-meta__date,
.article-meta--on-dark .article-meta__time {
  color: rgba(255, 255, 255, 0.5);
}

.article-hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 820px;
  margin-bottom: 20px;
}

@media (min-width: 1024px) { .article-hero-title { font-size: 44px; } }

.article-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 640px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.article-meta__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-700);
  background: var(--surface-50);
  border: 1px solid rgba(10, 30, 38, 0.08);
  padding: 4px 12px;
  border-radius: 9999px;
}

.article-meta__sep { color: var(--surface-200); }

.article-meta__date,
.article-meta__time {
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-950);
  max-width: 820px;
  margin-bottom: 20px;
}

@media (min-width: 1024px) { .article-title { font-size: 44px; } }

.article-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 680px;
  margin-bottom: 36px;
}

.article-cover {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  height: 420px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article body layout */
.article-body {
  background: #fff;
  padding: 56px 0 80px;
}

.article-layout {
  display: grid;
  gap: 56px;
  align-items: start;
}

@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr 296px;
    gap: 64px;
  }
}

/* Prose content */
.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin: 40px 0 14px;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-950);
  margin: 28px 0 10px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 20px;
}

.article-content p:first-child { margin-top: 0; }

.article-content ul,
.article-content ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-content ul li,
.article-content ol li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.article-content ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-500);
  flex-shrink: 0;
  margin-top: 10px;
}

.article-content ol { counter-reset: ol-counter; }

.article-content ol li { counter-increment: ol-counter; }

.article-content ol li::before {
  content: counter(ol-counter) ".";
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime-800);
  flex-shrink: 0;
  min-width: 20px;
  margin-top: 2px;
}

.article-content strong { color: var(--ink-950); font-weight: 700; }

.article-callout {
  background: var(--surface-50);
  border-left: 3px solid var(--lime-500);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin: 28px 0;
}

.article-callout__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime-800);
  margin-bottom: 6px;
}

.article-callout p {
  font-size: 15px;
  color: var(--ink-950);
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}

/* Share bar */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 0.5px solid var(--surface-200);
  border-bottom: 0.5px solid var(--surface-200);
  margin: 40px 0 0;
}

.article-share__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-right: 4px;
}

.article-share__btns { display: flex; gap: 8px; flex-wrap: wrap; }

.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(10, 30, 38, 0.12);
  background: #fff;
  color: var(--ink-700);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.article-share__btn:hover {
  background: var(--surface-50);
  color: var(--ink-950);
  border-color: rgba(10, 30, 38, 0.25);
}

.article-share__btn--wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.article-share__btn--li:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.article-share__btn--copy.is-copied { background: var(--aqua-600); color: #fff; border-color: var(--aqua-600); }

/* Article sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .article-sidebar { position: sticky; top: 96px; }
}

.article-sidebar__card {
  background: var(--surface-50);
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  padding: 22px;
}

.article-sidebar__card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.article-sidebar__author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 3px;
}

.article-sidebar__author-role {
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 14px;
}

.article-sidebar__share { display: flex; flex-direction: column; gap: 8px; }

.article-sidebar__share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(10, 30, 38, 0.1);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.article-sidebar__share-btn:hover { border-color: var(--ink-700); color: var(--ink-950); background: #fff; }
.article-sidebar__share-btn--wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.article-sidebar__share-btn--li:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.article-sidebar__share-btn--copy.is-copied { background: var(--aqua-600); color: #fff; border-color: var(--aqua-600); }

.article-sidebar__cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--ink-950);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.article-sidebar__cta:hover { background: var(--ink-900); }

/* Related articles */
.article-related {
  background: var(--surface-50);
  padding: 64px 0;
  border-top: 0.5px solid var(--surface-200);
}

/* ============================================================
   Marca Própria — wireframe layout
   ============================================================ */
.pl-main-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .pl-main-layout {
    grid-template-columns: 1fr 360px;
    gap: 64px;
  }
}

.pl-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.pl-step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 16px;
  align-items: start;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 38, 0.08);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pl-step-row:hover {
  border-color: rgba(10, 30, 38, 0.16);
  box-shadow: 0 8px 24px -8px rgba(15, 44, 56, 0.12);
}

.pl-step-row__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--surface-200);
  line-height: 1;
  padding-top: 3px;
}

.pl-step-row__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 6px;
}

.pl-step-row__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
}

.pl-proposal-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(10, 30, 38, 0.1);
  padding: 32px;
  box-shadow: 0 8px 40px -8px rgba(15, 44, 56, 0.1);
}

@media (min-width: 1024px) {
  .pl-proposal-card {
    position: sticky;
    top: 96px;
  }
}

.pl-proposal-card__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.pl-proposal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pl-proposal-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
}

@view-transition {
  navigation: auto;
}