/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: #FDFAF7;
  color: #2C1F14;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS ─── */
:root {
  --cream:      #FDFAF7;
  --blush:      #F7EDE3;
  --sand:       #ECDAC7;
  --terra:      #DA8657;
  --terra-lt:   #EDAA88;
  --sage:       #90B5A4;
  --forest:     #3F6359;
  --text:       #2C1F14;
  --text-mid:   #6B5040;
  --text-dim:   #A08878;
  --border:     rgba(218,134,87,0.15);
}

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header.scrolled { padding: 0.75rem 2.5rem; }

.header-logo {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--forest); letter-spacing: 0.02em;
}
.header-logo span { color: var(--terra); }

.header-nav { display: flex; gap: 2rem; align-items: center; }
.header-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--text-mid);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--terra); }

.header-cta {
  background: var(--terra); color: #fff !important;
  padding: 0.5rem 1.25rem; border-radius: 2rem;
  font-size: 0.9rem !important; font-weight: 500 !important;
  transition: background 0.25s, transform 0.2s !important;
}
.header-cta:hover { background: var(--forest) !important; transform: translateY(-1px); }

.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--forest); border-radius: 2px; transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5vw 4rem; gap: 4rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(218,134,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 100px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,99,89,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); font-weight: 500; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.15s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 28px; height: 1px; background: var(--terra);
}

.hero-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--forest); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.25s ease forwards;
}
.hero-title em { font-style: italic; color: var(--terra); font-weight: 400; }

.hero-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
  max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.55s ease forwards;
}

.btn-terra {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--terra); color: #fff;
  padding: 0.85rem 2rem; border-radius: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.25s;
}
.btn-terra:hover { background: var(--forest); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(63,99,89,0.2); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--sand); color: var(--text-mid);
  padding: 0.85rem 1.75rem; border-radius: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 400; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }

section[id] { scroll-margin-top: 96px; }
.hero { scroll-margin-top: 96px; }

.hero-visual {
  position: relative; z-index: 1;
  opacity: 0; animation: fadeIn 1s 0.5s ease forwards;
}

.hero-img-wrap {
  position: relative;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  overflow: hidden; aspect-ratio: 1/1;
  background: var(--sand);
  box-shadow: 0 32px 80px rgba(63,99,89,0.14);
}

.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--sand) 50%, rgba(144,181,164,0.3) 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem; color: var(--text-dim);
  font-size: 0.8rem; text-align: center; padding: 2rem;
}
.hero-img-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* ─── SECTION COMMON ─── */
.section { padding: 6rem 5vw; }
.section-alt { background: var(--blush); }
.section-sage { background: rgba(144,181,164,0.12); }

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); font-weight: 500;
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--terra); }

.section-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  color: var(--forest); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--terra); }

.inner { max-width: 1100px; margin: 0 auto; }

/* ─── SOBRE ─── */
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.sobre-img-wrap {
  position: relative; border-radius: 24px;
  overflow: hidden; aspect-ratio: 3/4; background: var(--sand);
}
.sobre-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--sand) 0%, var(--blush) 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem; color: var(--text-dim);
  font-size: 0.78rem; text-align: center; padding: 2rem;
}
.sobre-img-placeholder svg { width: 40px; height: 40px; opacity: 0.35; }

.sobre-deco {
  position: absolute; top: -1rem; right: -1rem;
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--sage); opacity: 0.5;
}
.sobre-deco2 {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--terra); opacity: 0.15;
}

.sobre-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.sobre-copy p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem; color: var(--text-mid);
  line-height: 1.85; font-weight: 300;
}
.sobre-copy p strong { color: var(--forest); font-weight: 500; }

.sobre-crp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 0.5rem; padding: 0.6rem 1rem;
  font-size: 0.78rem; color: var(--text-dim);
  font-family: 'Source Sans 3', sans-serif;
  width: fit-content; margin-top: 0.5rem;
}
.sobre-crp svg { width: 14px; height: 14px; color: var(--terra); }

.sobre-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.pill {
  background: var(--sand); border: 1px solid rgba(218,134,87,0.2);
  border-radius: 2rem; padding: 0.3rem 0.9rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem; color: var(--forest); font-weight: 400;
}

/* ─── ABORDAGEM ─── */
.abordagem-header { text-align: center; margin-bottom: 3.5rem; }
.abordagem-sub {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-mid); font-weight: 300; font-size: 1.05rem;
  max-width: 540px; margin: 0.75rem auto 0;
}

.abordagem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.abordagem-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem 1.5rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.abordagem-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--terra);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.abordagem-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(63,99,89,0.1); }
.abordagem-card:hover::before { transform: scaleX(1); }

.ac-icon {
  width: 44px; height: 44px; border-radius: 0.75rem;
  background: var(--blush); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; color: var(--terra);
}
.ac-icon svg { width: 22px; height: 22px; }

.abordagem-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.5rem;
}
.abordagem-card p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem; color: var(--text-mid);
  line-height: 1.75; font-weight: 300;
}

/* ─── JORNADAS ─── */
.jornadas { background: var(--forest); }

.jornadas-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.jornadas-copy .section-label { color: var(--terra-lt); }
.jornadas-copy .section-label::before { background: var(--terra-lt); }
.jornadas-copy .section-title { color: #fff; }

.jornadas-copy p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  font-weight: 300; line-height: 1.85; margin-bottom: 0.75rem;
}

.jornadas-tagline {
  font-style: italic !important;
  color: rgba(237,170,136,0.9) !important;
  font-size: 1rem !important;
}

.jornadas-items {
  display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem;
}
.jornadas-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem; color: rgba(255,255,255,0.85); font-weight: 300;
}

.ji-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra-lt);
}
.ji-icon svg { width: 16px; height: 16px; }

.btn-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--terra-lt); color: var(--forest);
  padding: 0.85rem 2rem; border-radius: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 600; transition: all 0.25s;
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* Card das Jornadas */
.jornadas-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.5rem; padding: 2.5rem;
  backdrop-filter: blur(8px); position: relative;
}

.jc-badge {
  display: inline-block;
  background: var(--terra); color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.jornadas-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.75rem; font-weight: 400;
  color: #fff; margin-bottom: 0.5rem;
  font-style: italic; line-height: 1.25;
}
.jc-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra-lt); margin-bottom: 1.5rem;
}
.jc-detail { display: flex; flex-direction: column; gap: 0.5rem; }
.jc-row {
  display: flex; justify-content: space-between;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.88rem;
}
.jc-row:last-child { border: none; }
.jc-row .k { color: rgba(255,255,255,0.45); font-weight: 300; }
.jc-row .v { color: rgba(255,255,255,0.88); font-weight: 400; }

.jc-cta {
  display: inline-flex; align-items: center;
  margin-top: 1.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--terra-lt);
  transition: color 0.2s, gap 0.2s; gap: 0.4rem;
}
.jc-cta:hover { color: #fff; gap: 0.7rem; }

/* ─── DEPOIMENTOS ─── */
.dep-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}

.dep-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: all 0.3s;
}
.dep-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(63,99,89,0.08); }

.dep-stars { display: flex; gap: 0.2rem; }
.dep-stars svg { width: 14px; height: 14px; color: var(--terra); }

.dep-text {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1rem; font-style: italic;
  color: var(--forest); line-height: 1.65; font-weight: 300; flex: 1;
}

.dep-author { display: flex; align-items: center; gap: 0.75rem; }
.dep-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blush); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem;
  color: var(--terra); font-weight: 600; flex-shrink: 0;
  font-family: 'Montserrat Alternates', sans-serif;
}
.dep-info { display: flex; flex-direction: column; }
.dep-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem; font-weight: 500; color: var(--forest);
}
.dep-meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem; color: var(--text-dim); font-weight: 300;
}

.dep-notice {
  text-align: center; margin-top: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; color: var(--text-dim);
  font-style: italic; font-weight: 300;
}

/* ─── CONTATO ─── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  justify-items: stretch;
  align-content: stretch;
}
.contato-copy { 
  display: flex; 
  flex-direction: column; 
  gap: 1.25rem;
  padding-top: 0.5rem;
}
.contato-copy p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem; color: var(--text-mid); font-weight: 300; line-height: 1.85;
}

.contato-items { 
  display: flex; 
  flex-direction: column; 
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contato-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: 0.75rem;
  background: #fff; border: 1px solid var(--border); transition: border-color 0.2s;
}
.contato-item:hover { border-color: var(--terra); }
.ci-icon {
  width: 36px; height: 36px; border-radius: 0.5rem;
  background: var(--blush); display: flex; align-items: center;
  justify-content: center; color: var(--terra); flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-body { display: flex; flex-direction: column; }
.ci-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem; color: var(--text-dim); font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ci-value {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; color: var(--forest); font-weight: 400;
}

/* FORM */
.contato-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-mid); letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand); border-radius: 0.6rem;
  background: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(218,134,87,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-form {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--terra); color: #fff;
  border: none; cursor: pointer;
  padding: 1rem 2rem; border-radius: 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.25s; margin-top: 0.5rem;
}
.btn-form:hover { background: var(--forest); transform: translateY(-2px); }
.btn-form svg { width: 16px; height: 16px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--forest); color: rgba(255,255,255,0.7);
  padding: 3rem 5vw 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.2rem; font-weight: 400; color: #fff;
}
.footer-logo span { color: var(--terra-lt); }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--terra-lt); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--terra-lt); color: var(--terra-lt); }
.footer-social svg { width: 16px; height: 16px; }
.footer-copy {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-copy a:hover { color: var(--terra-lt); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px;
  width: 58px; height: 58px; border-radius: 999px;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  z-index: 999; text-decoration: none;
  animation: waPulse 2.8s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.07); }
.whatsapp-icon { width: 30px; height: 30px; fill: #fff; display: block; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 3rem; }
  .hero-visual { order: -1; max-width: 300px; margin: 0 auto; }
  .hero-title { font-size: 2.8rem; }
  .sobre-grid, .contato-grid, .jornadas-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-img-wrap { max-width: 300px; aspect-ratio: 1; border-radius: 50%; margin: 0 auto; }
  .abordagem-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }

  .header-nav {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: -100%; bottom: 0;
    height: 100vh; width: 80%; max-width: 300px;
    background: var(--cream);
    align-items: flex-start; justify-content: flex-start;
    padding: 92px 2rem 2rem; gap: 1.25rem; z-index: 101;
    box-shadow: -8px 0 40px rgba(63,99,89,0.12);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .header-nav.open { right: 0; }
  .header-nav a { font-size: 1.05rem; color: var(--forest); font-weight: 400; width: 100%; }
  .header-nav .header-cta {
    background: var(--terra) !important; color: #fff !important;
    padding: 0.75rem 1.5rem !important; border-radius: 2rem;
    text-align: center; margin-top: 0.5rem;
  }
  .menu-btn { display: flex; z-index: 102; }

  .nav-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 100; background: rgba(63,99,89,0.3);
    opacity: 0; transition: opacity 0.35s ease;
  }
  .nav-overlay.active { display: block; }
  .nav-overlay.visible { opacity: 1; }

  .section { padding: 4rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { justify-content: center; }
  .footer-nav { flex-direction: column; gap: 0.4rem; align-items: center; }
  .jc-row .v { font-size: 0.82rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .contato-grid { gap: 2rem; }
}