/* ============================================
   RESET & BASE
============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta exata do prompt */
  --petrol: #1F3A44;
  --petrol-deep: #152830;
  --moss: #5E7262;
  --moss-light: #8A9A83;
  --off-white: #FAF8F5;
  --sand: #ECE5DA;
  --sand-light: #F5F0E8;
  --terracotta: #B07A63;
  --terracotta-soft: #C99482;
  --grey: #6E706C;
  --grey-soft: #9A9C98;
  --line: rgba(31, 58, 68, 0.12);
  --line-soft: rgba(31, 58, 68, 0.06);

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', 'Canela', Georgia, serif;
  --font-sans: 'Inter', 'Manrope', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Escala tipográfica fluida */
  --fs-hero: clamp(3rem, 7vw, 6.5rem);
  --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h2: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.375rem, 2vw, 1.75rem);
  --fs-lead: clamp(1.125rem, 1.4vw, 1.375rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Espaçamento (muito respiro = estética editorial) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Container */
  --container: 1280px;
  --container-narrow: 880px;

  /* Transição */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--grey);
  background: var(--off-white);
  overflow-x: hidden;
  font-weight: 300;
}

body.no-scroll {
  overflow: hidden;
}

/* Tipografia base */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--petrol);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }

p { 
  max-width: 65ch;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   UTILITIES
============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--moss);
}

.section-title {
  font-size: var(--fs-h2);
  color: var(--petrol);
  line-height: 1.15;
  max-width: 20ch;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.section-head {
  margin-bottom: var(--space-lg);
}

.lead {
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--petrol);
  font-weight: 300;
  max-width: 50ch;
  margin-bottom: 1.5rem;
}

/* Fade in animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease-out) forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.3s; }
.fade-in-up:nth-child(3) { animation-delay: 0.5s; }
.fade-in-up:nth-child(4) { animation-delay: 0.7s; }
.fade-in-up:nth-child(5) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   NAVIGATION (CORREÇÃO FINAL DE CORES)
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
  color: #ffffff;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--petrol);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  color: inherit;
}

.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.nav__logo:hover .nav__logo-mark {
  background: #ffffff;
  color: var(--petrol);
  border-color: #ffffff;
}

.nav.scrolled .nav__logo:hover .nav__logo-mark {
  background: var(--petrol);
  color: #ffffff;
  border-color: var(--petrol);
}

.nav__logo-text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__menu a {
  font-size: var(--fs-small);
  color: inherit;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.nav__menu a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.4s var(--ease);
}

.nav__menu a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.75rem 1.75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--fs-small);
  color: inherit;
  transition: all 0.4s var(--ease);
}

.nav__cta:hover {
  background: #ffffff;
  color: var(--petrol);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.nav.scrolled .nav__cta:hover {
  background: var(--petrol);
  color: #ffffff;
  border-color: var(--petrol);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { top: 14px; }

/* ============================================
   HERO (COM SUPORTE A TAG PICTURE)
============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background: var(--petrol-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Suporte para tag picture */
.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg picture source {
  display: block;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.7) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 40, 48, 0.75) 0%,
    rgba(31, 58, 68, 0.55) 50%,
    rgba(94, 114, 98, 0.45) 100%
  );
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__text-wrapper {
  max-width: 780px;
}

.hero .eyebrow {
  color: var(--sand);
}

.hero .eyebrow::before {
  background: var(--sand);
}

.hero__title {
  font-size: var(--fs-hero);
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  color: var(--sand);
  font-weight: 300;
}

.hero__sub {
  font-size: var(--fs-lead);
  max-width: 560px;
  color: rgba(250, 248, 245, 0.85);
  margin-bottom: 3rem;
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  list-style: none;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.15);
}

.hero__badges li {
  font-size: var(--fs-micro);
  color: rgba(250, 248, 245, 0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-dot {
  width: 4px;
  height: 4px;
  background: var(--terracotta-soft);
  border-radius: 50%;
  display: inline-block;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 60px;
  overflow: hidden;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--sand);
  animation: scrollLine 2.5s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-size: var(--fs-small);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  background: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--off-white);
  color: var(--petrol);
}

.btn--primary:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
  color: var(--off-white);
  border-color: rgba(250, 248, 245, 0.3);
}

.btn--ghost:hover {
  border-color: var(--off-white);
  background: rgba(250, 248, 245, 0.08);
}

.btn--outline {
  color: var(--petrol);
  border-color: var(--petrol);
}

.btn--outline:hover {
  background: var(--petrol);
  color: var(--off-white);
}

.btn--large {
  padding: 1.25rem 2.75rem;
  font-size: 0.9375rem;
}

/* ============================================
   MANIFESTO
============================================ */
.manifesto {
  position: relative;
  background: var(--sand-light);
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

#manifestoCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.manifesto__inner .section-title {
  max-width: 100%;
  margin: 0 auto 3rem;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.1;
}

.manifesto .lead {
  margin: 0 auto 2rem;
  max-width: 680px;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
}

/* ============================================
   SPECIALTIES
============================================ */
.specialties {
  background: var(--off-white);
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.spec-card {
  padding: 3rem 2rem 3rem 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  position: relative;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.5s var(--ease);
}

.spec-card:hover::before {
  width: 40px;
}

.spec-card:hover {
  padding-left: 3rem;
}

.spec-card h3 {
  font-size: 1.5rem;
  color: var(--petrol);
  margin-bottom: 1rem;
  font-weight: 500;
}

.spec-card p {
  font-size: 0.9375rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 45ch;
}

/* ============================================
   TIMELINE
============================================ */
.timeline {
  background: var(--sand-light);
}

.tl {
  list-style: none;
  position: relative;
  padding-left: 2rem;
  margin-top: var(--space-lg);
}

.tl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.tl__item {
  position: relative;
  padding: 0 0 4rem 3rem;
}

.tl__item:last-child {
  padding-bottom: 0;
}

.tl__dot {
  position: absolute;
  left: -0.5rem;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--terracotta);
  transition: all 0.4s var(--ease);
}

.tl__item:hover .tl__dot {
  background: var(--terracotta);
  transform: scale(1.2);
}

.tl__content h4 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--petrol);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.tl__content p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================
   PROCESS (How it works)
============================================ */
.process {
  background: var(--off-white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem 3rem;
  margin-top: var(--space-lg);
}

.process__step {
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--terracotta-soft);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.8;
}

.process__step h4 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--petrol);
  margin-bottom: 1rem;
  font-weight: 500;
}

.process__step p {
  color: var(--grey);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 35ch;
}

/* ============================================
   AUDIENCE
============================================ */
.audience {
  background: var(--sand-light);
}

.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.audience__text .section-title {
  margin-bottom: 2rem;
}

.audience__list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.audience__list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--petrol);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s var(--ease);
  font-weight: 400;
}

.audience__list li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
  transition: width 0.4s var(--ease);
}

.audience__list li:hover::before {
  width: 48px;
}

.audience__list li:hover {
  padding-left: 1rem;
}

/* ============================================
   CORPORATE
============================================ */
.corporate {
  background: var(--moss);
  color: var(--off-white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.corporate__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.corporate__text .eyebrow {
  color: var(--sand);
}

.corporate__text .eyebrow::before {
  background: var(--sand);
}

.corporate__text .section-title {
  color: var(--off-white);
  margin-bottom: 2rem;
}

.corporate__text .lead {
  color: rgba(250, 248, 245, 0.9);
  margin-bottom: 2.5rem;
}

.corporate__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 2.5rem 0;
}

.corporate__tags li {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(250, 248, 245, 0.3);
  border-radius: 999px;
  font-size: var(--fs-small);
  color: var(--off-white);
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
}

.corporate__tags li:hover {
  background: var(--off-white);
  color: var(--moss);
  border-color: var(--off-white);
}

.corporate .btn--primary {
  background: var(--off-white);
  color: var(--moss);
}

.corporate .btn--primary:hover {
  background: var(--sand);
}

.corporate__img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
}

.corporate__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.corporate__img:hover img {
  transform: scale(1.03);
}

/* ============================================
   ABOUT (Editorial layout)
============================================ */
.about {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about__img-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: visible;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(15%) brightness(1.02);
  transition: filter 0.6s var(--ease);
}

.about__img-wrapper:hover .about__img {
  filter: grayscale(0%) brightness(1);
}

.about__img-accent {
  position: absolute;
  top: 2rem;
  left: -2rem;
  width: 80%;
  height: 80%;
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  z-index: -1;
  pointer-events: none;
}

.about__text .eyebrow {
  color: var(--terracotta);
}

.about__text .eyebrow::before {
  background: var(--terracotta);
}

.about__text .section-title {
  margin-bottom: 2.5rem;
}

.about__text p {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--petrol);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.about__text .btn--outline {
  margin-top: 2rem;
}

/* ============================================
   DIFFERENTIALS
============================================ */
.differentials {
  background: var(--sand-light);
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: var(--space-lg);
}

.diff__card {
  background: var(--off-white);
  padding: 3rem 2.5rem;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.diff__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.5s var(--ease);
}

.diff__card:hover {
  background: var(--sand-light);
}

.diff__card:hover::after {
  width: 100%;
}

.diff__card h4 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--petrol);
  font-weight: 500;
}

.diff__card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--grey);
  max-width: 40ch;
}

/* ============================================
   FAQ
============================================ */
.faq {
  background: var(--off-white);
}

.faq__list {
  max-width: 880px;
  margin: var(--space-lg) auto 0;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  padding: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--petrol);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color 0.3s var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--terracotta);
}

.faq__answer {
  padding: 0 0 2rem;
  max-width: 720px;
}

.faq__answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey);
}

/* ============================================
   BLOG
============================================ */
.blog {
  background: var(--sand-light);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: var(--space-lg);
}

.blog__card {
  background: var(--off-white);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.blog__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -30px rgba(31, 58, 68, 0.2);
}

.blog__img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.blog__card:hover .blog__img-wrapper img {
  transform: scale(1.05);
}

.blog__content {
  padding: 2rem;
}

.blog__category {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.blog__content h3 {
  font-size: 1.375rem;
  color: var(--petrol);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.blog__content p {
  font-size: 0.9375rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog__link {
  font-size: var(--fs-small);
  color: var(--petrol);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-align: left;
}

.blog__link:hover {
  gap: 0.75rem;
  color: var(--terracotta);
}

/* ============================================
   MODAL (POP-UP DOS ARTIGOS)
============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 40, 48, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal__content {
  position: relative;
  background: var(--off-white);
  width: 90%;
  max-width: 880px;
  max-height: 90vh;
  border-radius: 4px;
  overflow-y: auto;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}

.modal.is-open .modal__content {
  transform: translateY(0) scale(1);
}

.modal__content::-webkit-scrollbar {
  width: 6px;
}
.modal__content::-webkit-scrollbar-track {
  background: var(--sand-light);
}
.modal__content::-webkit-scrollbar-thumb {
  background: var(--grey-soft);
  border-radius: 3px;
}

.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--sand);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.75rem;
  color: var(--petrol);
  transition: all 0.3s var(--ease);
  z-index: 10;
  line-height: 1;
}

.modal__close:hover {
  background: var(--terracotta);
  color: var(--off-white);
  transform: rotate(90deg);
}

.modal__img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.modal__text {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  max-width: 720px;
  margin: 0 auto;
}

.modal__title {
  font-size: var(--fs-h2);
  margin: 1rem 0 2rem;
  color: var(--petrol);
  line-height: 1.15;
}

.modal__text p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--grey);
}

.modal__text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--petrol);
  margin: 2.5rem 0 1rem;
  font-weight: 500;
}

.modal__text ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.modal__text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--grey);
  line-height: 1.7;
}

.modal__text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  background: var(--petrol-deep);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.final-cta__title em {
  font-style: italic;
  color: var(--sand);
}

.final-cta__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.final-cta__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--petrol);
  color: rgba(250, 248, 245, 0.75);
  padding: 5rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__brand .nav__logo-mark {
  border-color: var(--off-white);
  color: var(--off-white);
  margin-bottom: 1rem;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--off-white);
  font-weight: 400;
  margin: 0;
}

.footer__title,
.footer__crp {
  font-size: var(--fs-small);
  color: rgba(250, 248, 245, 0.6);
  margin: 0;
}

.footer__contact h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sand);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__list a {
  font-size: var(--fs-small);
  color: rgba(250, 248, 245, 0.75);
  transition: color 0.3s var(--ease);
}

.footer__list a:hover {
  color: var(--off-white);
}

.footer__legal {
  grid-column: 1 / -1;
  padding-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-micro);
  color: rgba(250, 248, 245, 0.5);
}

.footer__disclaimer {
  max-width: 50ch;
  text-align: right;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .nav__menu a:not(.nav__cta) {
    display: none;
  }
  
  .audience__inner,
  .corporate__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer__legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 5rem;
    --space-2xl: 7rem;
  }
  
  .nav__menu {
    display: none;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .hero {
    padding-top: 5rem;
  }
  
  /* Ajuste fino para imagem mobile (vertical) */
  .hero__bg-img {
    object-position: center top;
  }
  
  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  
  .hero__sub {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    margin-bottom: 2rem;
  }
  
  .hero__actions {
    margin-bottom: 2.5rem;
  }
  
  .hero__badges {
    gap: 0.75rem 1.5rem;
  }

  .audience__list li {
    font-size: 1.125rem;
  }
  
  .about__img-accent {
    display: none;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
  }
  
  .footer__legal {
    flex-direction: column;
    text-align: left;
  }
  
  .footer__disclaimer {
    text-align: left;
  }
  
  .faq__item summary {
    font-size: 1.125rem;
  }

  .modal__content {
    width: 95%;
    max-height: 95vh;
  }
  .modal__img {
    aspect-ratio: 16/9;
  }
  .modal__text {
    padding: 2rem 1.5rem 3rem;
  }
  .modal__close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 4.5rem;
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
  
  .hero__sub {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    justify-content: center;
    padding: 1rem 1.75rem;
  }
  
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}