/* ========== BIÓDIS — Page-specific styles ========== */

/* ===================== HOME — HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(109,197,83,.22), transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(46,125,34,.26), transparent 65%),
    linear-gradient(180deg, #0B1218 0%, #0E1820 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .25;
  background-image:
    linear-gradient(to right, rgba(245,241,232,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,241,232,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-meta {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--bd-rule); padding-bottom: 20px;
}
.hero-meta .mono { display: flex; gap: 28px; }
.hero-meta .mono span { display: flex; align-items: center; gap: 8px; }
.hero-meta .mono span::before { content: ''; width: 6px; height: 6px; background: var(--bd-green-2); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: end; }
.hero-display {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(56px, 9.5vw, 168px); line-height: .88;
  letter-spacing: -.045em;
}
.hero-display .line { display: block; overflow: hidden; }
.hero-display .line-inner {
  display: inline-block; transform: translateY(110%);
  animation: hero-line-in 1.1s var(--ease-out) forwards;
}
.hero-display .line:nth-child(1) .line-inner { animation-delay: .2s; }
.hero-display .line:nth-child(2) .line-inner { animation-delay: .35s; }
.hero-display .line:nth-child(3) .line-inner { animation-delay: .5s; }
@keyframes hero-line-in { to { transform: translateY(0); } }
.hero-display .accent {
  font-style: italic; font-weight: 300; color: var(--bd-green-2);
  font-family: var(--ff-display);
}
/* Linha maior do hero — responsiva */
.hero-display-accent {
  display: block;
  font-size: clamp(56px, 14vw, 140px);
  color: rgb(232, 245, 234);
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-right {
  display: flex; flex-direction: column; gap: 24px; padding-bottom: 10px;
  opacity: 0; animation: fade-up 1s var(--ease-out) .9s forwards;
}
.hero-right p { font-size: 17px; line-height: 1.5; color: rgba(245,241,232,.75); font-weight: 300; }
.hero-right .mono-sm { font-size: 11px; color: var(--bd-green-2); letter-spacing: .2em; text-transform: uppercase; }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-floating-drop {
  position: absolute; right: -80px; top: 10%; z-index: 1;
  width: 520px; opacity: .14;
  animation: float 14s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-28px) rotate(2deg); } }

.hero-scroll {
  position: absolute; bottom: 30px; left: 40px; z-index: 2;
  display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bd-mute);
  animation: fade-up 1s var(--ease-out) 1.2s both;
}
.hero-scroll-line { width: 60px; height: 1px; background: var(--bd-green-2); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; inset: 0; background: var(--bd-bone);
  transform: translateX(-100%); animation: scroll-pulse 2.2s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse { 0% { transform: translateX(-100%); } 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 30px; }
  .hero-floating-drop { width: 300px; right: -60px; top: 8%; opacity: .1; }
  .hero-scroll { left: 20px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta .mono { gap: 18px; font-size: 10px; }
  .hero-display { font-size: clamp(40px, 11vw, 88px); }
  .hero-display-accent { font-size: clamp(56px, 14vw, 88px); }
}
@media (max-width: 480px) {
  .hero { padding: 120px 20px 80px; }
  .hero-display { font-size: clamp(40px, 13vw, 64px); }
  .hero-display-accent { font-size: clamp(48px, 15vw, 72px); }
  .hero-right p { font-size: 15px; }
}

/* ===================== Marquee ticker ===================== */
.ticker {
  background: var(--bd-green); color: var(--bd-ink);
  padding: 18px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(14,24,32,.08); border-bottom: 1px solid rgba(14,24,32,.08);
}
.ticker-track {
  display: inline-flex; gap: 60px; animation: ticker-scroll 40s linear infinite;
  padding-right: 60px;
}
.ticker-item {
  font-family: var(--ff-display); font-weight: 700; font-size: 20px;
  letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 60px;
}
.ticker-item::after { content: '◆'; font-size: 12px; color: rgba(14,24,32,.4); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== Pilares (Why Biódis) ===================== */
.pilares { background: var(--bd-bone); color: var(--bd-ink); }
.pilares-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 80px; align-items: end;
}
.pilares-head h2 { color: var(--bd-ink); }
.pilares-head p { color: rgba(14,24,32,.72); font-size: 17px; line-height: 1.55; font-weight: 300; max-width: 480px; }
.pilares-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(14,24,32,.1);
}
.pilar {
  padding: 40px 30px 50px;
  border-right: 1px solid rgba(14,24,32,.1);
  position: relative; overflow: hidden; cursor: pointer;
  transition: background .4s var(--ease-out);
}
.pilar:last-child { border-right: none; }
.pilar:hover { background: var(--bd-ink); color: var(--bd-bone); }
.pilar:hover .pilar-num { color: var(--bd-green-2); }
.pilar:hover .pilar-desc { color: rgba(245,241,232,.7); }
.pilar-num {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .2em;
  color: rgba(14,24,32,.4); margin-bottom: 60px;
  transition: color .4s;
}
.pilar-icon {
  width: 56px; height: 56px; margin-bottom: 24px;
  color: var(--bd-green-3);
  transition: color .4s, transform .4s;
}
.pilar:hover .pilar-icon { color: var(--bd-green-2); transform: rotate(-8deg) scale(1.05); }
.pilar h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 24px;
  line-height: 1.1; margin-bottom: 14px; letter-spacing: -.02em;
}
.pilar-desc { font-size: 14px; line-height: 1.5; color: rgba(14,24,32,.68); font-weight: 300; transition: color .4s; }
.pilar-arrow {
  position: absolute; bottom: 30px; right: 30px;
  opacity: 0; transform: translate(-8px, 8px);
  transition: all .4s var(--ease-out);
}
.pilar:hover .pilar-arrow { opacity: 1; transform: none; color: var(--bd-green-2); }
@media (max-width: 900px) {
  .pilares-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .pilares-grid { grid-template-columns: 1fr; }
  .pilar { border-right: none; border-bottom: 1px solid rgba(14,24,32,.1); }
  .pilar-num { margin-bottom: 30px; }
}

/* ===================== Stats / counters ===================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 80px 0; border-top: 1px solid var(--bd-rule); border-bottom: 1px solid var(--bd-rule);
  margin-top: 80px;
}
.stat-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 88px); line-height: 1;
  color: var(--bd-green-2); letter-spacing: -.04em;
}
.stat-num .plus { color: var(--bd-bone); font-size: .6em; }
.stat-label { font-size: 13px; color: var(--bd-mute); margin-top: 10px; line-height: 1.4; max-width: 180px; }
@media (max-width: 900px) { .stats { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* ===================== Marcas (Partner carousel) ===================== */
.marcas { background: var(--bd-ink-2); padding: 120px 0 40px; }
.marcas-head { padding: 0 40px; max-width: 1440px; margin: 0 auto 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.marca-track-wrap { overflow: hidden; position: relative; padding: 30px 0; }
.marca-track-wrap::before, .marca-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marca-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bd-ink-2), transparent); }
.marca-track-wrap::after { right: 0; background: linear-gradient(to left, var(--bd-ink-2), transparent); }
.marca-track {
  display: inline-flex; gap: 0; animation: marca-scroll 35s linear infinite;
}
.marca-track:hover { animation-play-state: paused; }
.marca-item {
  flex: 0 0 auto; padding: 0 60px;
  border-right: 1px solid var(--bd-rule);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  min-width: 280px; min-height: 180px; justify-content: center;
  transition: background .3s;
}
.marca-item:hover { background: rgba(109,197,83,.04); }
.marca-logo-slot {
  display: grid; place-items: center;
  height: 80px; width: 100%;
}
.marca-logo-slot img {
  max-height: 80px; max-width: 200px; width: auto; height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .3s, transform .3s, filter .3s;
}
.marca-item:hover .marca-logo-slot img {
  opacity: 1; transform: scale(1.05);
  filter: none;
}
.marca-logo {
  font-family: var(--ff-display); font-weight: 700; font-size: 32px;
  color: var(--bd-bone); transition: color .3s, transform .3s;
  letter-spacing: -.02em;
}
.marca-item:hover .marca-logo { color: var(--bd-green-2); transform: scale(1.04); }
.marca-cat { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--bd-mute); }
@keyframes marca-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== Terceirização CTA strip ===================== */
.terc-cta {
  position: relative; overflow: hidden;
  background: var(--bd-ink);
  padding: 160px 40px;
}
.terc-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(109,197,83,.3), transparent 60%);
}
.terc-cta-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 160px, rgba(245,241,232,.04) 160px 161px);
}
.terc-cta-content {
  position: relative; z-index: 1; max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end;
}
.terc-cta h2 { font-size: clamp(48px, 7vw, 112px); line-height: .92; letter-spacing: -.04em; }
.terc-cta h2 .underline {
  text-decoration: underline; text-decoration-color: var(--bd-green-2);
  text-decoration-thickness: 6px; text-underline-offset: 12px;
}
@media (max-width: 900px) { .terc-cta-content { grid-template-columns: 1fr; gap: 30px; } .terc-cta { padding: 100px 20px; } }

/* ===================== EMPRESA — Timeline ===================== */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
  content: ''; position: absolute; left: 20%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--bd-green-2) 10%, var(--bd-green-2) 90%, transparent);
}
.timeline-item {
  display: grid; grid-template-columns: 20% 1fr; gap: 60px;
  padding: 40px 0; position: relative; align-items: start;
}
.timeline-item::before {
  content: ''; position: absolute; left: 20%; top: 52px; width: 16px; height: 16px;
  background: var(--bd-green-2); border: 3px solid var(--bd-ink);
  border-radius: 50%; transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(109,197,83,.15);
}
.timeline-year {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(40px, 4.5vw, 72px);
  color: var(--bd-green-2); letter-spacing: -.03em; text-align: right;
  padding-right: 40px;
}
.timeline-body h3 {
  font-family: var(--ff-display); font-size: 28px; margin-bottom: 12px;
  letter-spacing: -.02em;
}
.timeline-body p { font-size: 15px; line-height: 1.6; color: var(--bd-mute); font-weight: 300; max-width: 520px; }
@media (max-width: 760px) {
  .timeline::before { left: 8px; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; padding-left: 30px; }
  .timeline-item::before { left: 8px; top: 16px; }
  .timeline-year { text-align: left; padding-right: 0; font-size: 32px; }
}

/* MVV */
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.mvv-card {
  padding: 40px 32px; border: 1px solid rgba(14,24,32,.12); border-radius: 8px;
  background: var(--bd-paper); position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s;
}
.mvv-card:hover { transform: translateY(-6px); border-color: var(--bd-green-3); }
.mvv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--bd-green-3); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon { width: 44px; height: 44px; color: var(--bd-green-3); margin-bottom: 24px; }
.mvv-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--bd-ink); letter-spacing: -.02em; }
.mvv-card p { color: rgba(14,24,32,.72); font-size: 14px; line-height: 1.6; font-weight: 300; }
@media (max-width: 760px) { .mvv { grid-template-columns: 1fr; } }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 240px; gap: 16px;
  margin-top: 60px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .placeholder { width: 100%; height: 100%; transition: transform .6s var(--ease-out); }
.gallery-item:hover .placeholder { transform: scale(1.06); }
.gallery-item > img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.gallery-item:hover > img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,24,32,.55), transparent 45%); z-index: 1; pointer-events: none; }
.gallery-item-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--ff-display); font-weight: 600; font-size: 18px;
  color: var(--bd-bone); letter-spacing: -.01em;
}
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; } }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.team-card { position: relative; cursor: pointer; }
.team-card .placeholder { aspect-ratio: 3/4; }
.team-card .team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; border-radius: 4px; filter: grayscale(.15); transition: filter .35s, transform .5s var(--ease-out); }
.team-card:hover .team-photo { filter: grayscale(0); transform: translateY(-4px); }
.team-info { margin-top: 16px; }
.team-info h4 { font-family: var(--ff-display); font-size: 18px; letter-spacing: -.01em; }
.team-info p { font-size: 12px; color: var(--bd-mute); margin-top: 4px; letter-spacing: .04em; }
@media (max-width: 760px) { .team { grid-template-columns: 1fr 1fr; } }

/* ===================== TERCEIRIZAÇÃO ===================== */
.terc-hero { position: relative; padding: 200px 40px 120px; overflow: hidden; }
.terc-processo { background: var(--bd-bone); color: var(--bd-ink); }
.terc-processo .h2 { color: var(--bd-ink); }
.terc-processo .eyebrow { color: var(--bd-green-3); }
.terc-processo .eyebrow::before { background: var(--bd-green-3); }
.terc-processo .body-l, .terc-processo .body { color: rgba(14,24,32,.7); }
.terc-processo .processo-step h4 { color: var(--bd-ink); }
.terc-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(109,197,83,.18), transparent 55%), var(--bd-ink);
}
.terc-hero-content { position: relative; z-index: 1; max-width: 1440px; margin: 0 auto; }
.terc-hero h1 { font-size: clamp(48px, 7vw, 120px); letter-spacing: -.04em; line-height: .94; max-width: 15ch; }
.terc-hero p { margin-top: 28px; font-size: 20px; color: rgba(245,241,232,.75); max-width: 640px; font-weight: 300; line-height: 1.5; }

.razoes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--bd-rule); }
.razao {
  padding: 50px 36px 60px; border-right: 1px solid var(--bd-rule);
  border-bottom: 1px solid var(--bd-rule);
  position: relative; transition: background .3s;
}
.razao:nth-child(3n) { border-right: none; }
.razao:hover { background: rgba(109,197,83,.05); }
.razao-num {
  font-family: var(--ff-display); font-weight: 700; font-size: 40px;
  color: var(--bd-green-2); letter-spacing: -.03em; margin-bottom: 30px;
  display: flex; align-items: baseline; gap: 10px;
}
.razao-num::after { content: '—'; color: var(--bd-rule); font-size: 20px; }
.razao h3 { font-family: var(--ff-display); font-size: 22px; margin-bottom: 14px; letter-spacing: -.02em; line-height: 1.15; }
.razao p { font-size: 14px; color: var(--bd-mute); line-height: 1.6; font-weight: 300; }
@media (max-width: 900px) {
  .razoes { grid-template-columns: 1fr; }
  .razao { border-right: none; }
}

/* Process flow */
.processo {
  padding: 140px 40px; background: var(--bd-bone); color: var(--bd-ink);
  border-top: 1px solid var(--bd-rule);
}
.processo-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin-top: 80px; position: relative;
}
.processo-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, rgba(14,24,32,.1) 0%, rgba(14,24,32,.1) var(--flow, 0%), var(--bd-green-3) var(--flow, 0%), var(--bd-green-3) 100%);
  transition: none;
}
.processo-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.processo-dot {
  width: 64px; height: 64px; margin: 0 auto 24px;
  background: var(--bd-bone); border: 2px solid rgba(14,24,32,.12);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 22px; color: var(--bd-ink);
  transition: all .5s var(--ease-out);
}
.processo-step.on .processo-dot {
  background: var(--bd-green-3); color: var(--bd-bone); border-color: var(--bd-green-3);
  box-shadow: 0 0 0 8px rgba(46,125,34,.12);
}
.processo-step h4 { font-family: var(--ff-display); font-size: 18px; margin-bottom: 6px; letter-spacing: -.02em; }
.processo-step p { font-size: 13px; color: rgba(14,24,32,.6); line-height: 1.45; font-weight: 300; }
@media (max-width: 900px) {
  .processo-steps { grid-template-columns: 1fr; gap: 30px; }
  .processo-steps::before { display: none; }
  .processo-step { text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; }
  .processo-dot { margin: 0; }
}

/* Depoimentos */
.depoimentos-wrap { padding: 140px 40px; background: var(--bd-ink); }
.depoimento-card {
  max-width: 900px; margin: 60px auto 0; padding: 50px; border: 1px solid var(--bd-rule);
  border-radius: 12px; background: var(--bd-ink-2);
  display: grid; grid-template-columns: 120px 1fr; gap: 40px; align-items: start;
}
.depoimento-quote {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: 22px; line-height: 1.4; color: var(--bd-bone);
  letter-spacing: -.01em;
}
.depoimento-quote::before { content: '“'; font-size: 60px; color: var(--bd-green-2); line-height: 0; vertical-align: -0.3em; margin-right: 6px; }
.depoimento-author { margin-top: 24px; }
.depoimento-author strong { display: block; font-family: var(--ff-display); font-size: 16px; }
.depoimento-author span { font-size: 12px; color: var(--bd-mute); letter-spacing: .04em; }
.depoimento-avatar { aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
.depoimento-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.depoimento-dot { width: 28px; height: 3px; background: var(--bd-rule); cursor: pointer; transition: background .3s; border-radius: 2px; }
.depoimento-dot.on { background: var(--bd-green-2); }
@media (max-width: 760px) {
  .depoimento-card { grid-template-columns: 80px 1fr; gap: 20px; padding: 30px; }
  .depoimento-quote { font-size: 18px; }
}

/* ===================== FORMULAÇÕES ===================== */
.form-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 40px; }
.form-filter {
  padding: 10px 20px; border: 1px solid rgba(14,24,32,.12); border-radius: 999px;
  font-size: 13px; color: rgba(14,24,32,.6); transition: all .3s;
}
.form-filter:hover { border-color: var(--bd-green-3); color: var(--bd-green-3); }
.form-filter.on { background: var(--bd-ink); color: var(--bd-bone); border-color: var(--bd-ink); }

.form-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.form-card {
  position: relative; cursor: pointer; background: var(--bd-paper);
  border: 1px solid rgba(14,24,32,.08); border-radius: 8px; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.form-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -20px rgba(14,24,32,.18); }
.form-card .placeholder { aspect-ratio: 1; border: none; border-bottom: 1px solid rgba(14,24,32,.08); }
.form-card-body { padding: 20px; }
.form-card .mono { font-size: 10px; color: var(--bd-green-3); }
.form-card h4 { font-family: var(--ff-display); font-size: 18px; margin-top: 8px; letter-spacing: -.01em; color: var(--bd-ink); }
.form-card p { font-size: 12px; color: rgba(14,24,32,.6); margin-top: 6px; line-height: 1.5; font-weight: 300; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

/* P&D banner */
.pd-banner {
  background: var(--bd-ink); color: var(--bd-bone);
  padding: 140px 40px;
  position: relative; overflow: hidden;
}
.pd-banner-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end;
}
.pd-banner h2 { font-size: clamp(40px, 5.5vw, 84px); letter-spacing: -.04em; line-height: .95; }
.pd-banner-drop {
  aspect-ratio: 4/5; position: relative;
}
@media (max-width: 900px) { .pd-banner-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.blog-card { cursor: pointer; transition: transform .4s var(--ease-out); }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .placeholder { aspect-ratio: 16/10; margin-bottom: 20px; }
.blog-card .tag {
  display: inline-block; padding: 4px 10px; border: 1px solid rgba(14,24,32,.15);
  border-radius: 999px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bd-green-3); margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--ff-display); font-size: 22px; letter-spacing: -.02em;
  line-height: 1.2; color: var(--bd-ink); margin-bottom: 10px;
  transition: color .3s;
}
.blog-card:hover h3 { color: var(--bd-green-3); }
.blog-card time { font-size: 12px; color: rgba(14,24,32,.5); letter-spacing: .04em; }
.blog-featured { grid-column: span 3; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-bottom: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(14,24,32,.1); }
.blog-featured .placeholder { aspect-ratio: 4/3; margin-bottom: 0; }
.blog-featured-body { display: flex; flex-direction: column; justify-content: center; }
.blog-featured h3 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; grid-column: span 1; }
}

/* ===================== CONTATO ===================== */
.contato-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 140px 40px; max-width: 1440px; margin: 0 auto;
}
.contato-left h1 { font-size: clamp(48px, 6vw, 96px); letter-spacing: -.04em; line-height: .95; }
.contato-left p { margin-top: 24px; color: var(--bd-mute); font-size: 17px; line-height: 1.55; font-weight: 300; max-width: 480px; }
.contato-info { margin-top: 50px; display: flex; flex-direction: column; gap: 24px; padding-top: 30px; border-top: 1px solid var(--bd-rule); }
.contato-info-row { display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.contato-info-row .mono { color: var(--bd-green-2); }
.contato-info-row strong { font-family: var(--ff-display); font-size: 18px; font-weight: 600; }
.contato-info-row span { font-size: 14px; color: var(--bd-mute); display: block; margin-top: 4px; }

.form {
  background: var(--bd-ink-2); border: 1px solid var(--bd-rule); border-radius: 16px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bd-mute);
}
.form-field input, .form-field select, .form-field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid var(--bd-rule);
  padding: 12px 0; font-family: inherit; font-size: 15px; color: var(--bd-bone);
  outline: none; transition: border-color .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-bottom-color: var(--bd-green-2);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select option { background: var(--bd-ink); color: var(--bd-bone); }
.form-interest { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.form-interest button {
  padding: 8px 14px; border: 1px solid var(--bd-rule); border-radius: 999px;
  font-size: 12px; color: var(--bd-mute); transition: all .3s;
}
.form-interest button.on { background: var(--bd-green); color: var(--bd-ink); border-color: var(--bd-green); }
.form-submit { margin-top: 28px; width: 100%; justify-content: center; }
.form-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; font-size: 12px; color: var(--bd-mute);
}
.form-whatsapp a { color: var(--bd-green-2); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .contato-layout { grid-template-columns: 1fr; padding: 100px 20px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 24px; }
}

/* ===================== Nossas Marcas page ===================== */
.brands-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--bd-rule);
}
.brand-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  padding: 100px 40px;
  border-bottom: 1px solid var(--bd-rule);
  align-items: center;
  position: relative;
}
.brand-row:nth-child(even) {
  grid-template-columns: 1.4fr 1fr;
}
.brand-row:nth-child(even) .brand-logo-block { order: 2; }
.brand-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--brand-color, var(--bd-green-2));
  transform: scaleY(0); transform-origin: top;
  transition: transform .8s var(--ease-out);
}
.brand-row.in::before, .brand-row:hover::before { transform: scaleY(1); }
.brand-logo-block { display: flex; flex-direction: column; gap: 24px; }
.brand-logo-frame {
  aspect-ratio: 4/3;
  border: 1px solid var(--bd-rule);
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(109,197,83,.06), transparent 60%),
    var(--bd-ink-2);
  display: grid; place-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease-out);
}
.brand-row:hover .brand-logo-frame {
  border-color: var(--brand-color, var(--bd-green-2));
  transform: translateY(-6px);
}
.brand-logo-frame img {
  max-width: 75%; max-height: 70%;
  width: auto; height: auto;
  object-fit: contain;
}
.brand-logo-fallback {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: var(--bd-mute);
}
.brand-logo-fallback span {
  font-family: var(--ff-display); font-weight: 700; font-size: 28px;
  color: var(--bd-bone); letter-spacing: -.02em;
}
.brand-num {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .2em;
  color: var(--bd-mute); display: flex; align-items: center; gap: 12px;
}
.brand-num::before {
  content: ''; flex: 1; height: 1px; background: var(--bd-rule);
}
.brand-body .mono { color: var(--brand-color, var(--bd-green-2)); }
.brand-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px); line-height: 1;
  letter-spacing: -.035em; margin-top: 12px;
  color: var(--bd-bone);
}
.brand-tagline {
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); color: var(--bd-green-2);
  margin-top: 12px; line-height: 1.3;
}
.brand-desc {
  font-size: 16px; line-height: 1.6; color: rgba(245,241,232,.72);
  margin-top: 24px; font-weight: 300; max-width: 560px;
}
.brand-destaque {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 10px 16px;
  border: 1px solid var(--bd-rule); border-radius: 999px;
  font-size: 13px; color: var(--bd-bone);
}
.brand-destaque svg { color: var(--brand-color, var(--bd-green-2)); }
.brand-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.brand-site-link {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .12em;
  color: var(--bd-mute); border-bottom: 1px solid var(--bd-rule);
  padding-bottom: 4px; transition: color .3s, border-color .3s;
}
.brand-site-link:hover { color: var(--bd-green-2); border-color: var(--bd-green-2); }
@media (max-width: 900px) {
  .brand-row, .brand-row:nth-child(even) { grid-template-columns: 1fr; gap: 30px; padding: 60px 20px; }
  .brand-row:nth-child(even) .brand-logo-block { order: 0; }
}

/* ===================== Formato cards (Formulações) ===================== */
.formato-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(14,24,32,.1);
  border-left: 1px solid rgba(14,24,32,.1);
}
.formato-card {
  padding: 36px 28px 40px;
  border-right: 1px solid rgba(14,24,32,.1);
  border-bottom: 1px solid rgba(14,24,32,.1);
  background: var(--bd-bone);
  position: relative; overflow: hidden;
  transition: background .4s var(--ease-out), color .4s;
  cursor: default;
}
.formato-card:hover { background: var(--bd-ink); color: var(--bd-bone); }
.formato-card:hover .formato-icon { color: var(--bd-green-2); transform: rotate(-6deg) scale(1.06); }
.formato-card:hover h4 { color: var(--bd-bone); }
.formato-card:hover p { color: rgba(245,241,232,.7); }
.formato-icon {
  width: 64px; height: 64px;
  color: var(--bd-green-3);
  margin-bottom: 28px;
  transition: color .4s, transform .5s var(--ease-out);
}
.formato-card h4 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  color: var(--bd-ink); line-height: 1.15;
  margin-bottom: 10px;
  transition: color .4s;
}
.formato-card p {
  font-size: 14px; line-height: 1.55;
  color: rgba(14,24,32,.66); font-weight: 300;
  transition: color .4s;
}
@media (max-width: 1100px) { .formato-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .formato-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .formato-grid { grid-template-columns: 1fr; } }

/* ===================== Video banner (Home) ===================== */
.video-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bd-ink);
  border-top: 1px solid var(--bd-rule);
  border-bottom: 1px solid var(--bd-rule);
}
.video-banner-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(.2) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out);
}
.video-banner:hover .video-banner-img { transform: scale(1.08); }
.video-banner-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(14,24,32,.92) 0%, rgba(14,24,32,.7) 45%, rgba(14,24,32,.35) 100%),
    radial-gradient(ellipse at right, rgba(34,72,40,.25), transparent 60%);
}
.video-banner-content {
  position: relative; z-index: 2;
  max-width: 1440px; width: 100%;
  margin: 0 auto; padding: 120px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: end;
}
.video-banner-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(48px, 5.6vw, 88px); line-height: .98;
  letter-spacing: -.035em; color: var(--bd-bone);
  margin-top: 20px;
}
.video-banner-title em {
  font-style: italic; font-weight: 300;
  color: var(--bd-green-2);
}
.video-banner-title .underline {
  position: relative; white-space: nowrap;
}
.video-banner-title .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.05em;
  height: 6px; background: var(--bd-green-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s .3s var(--ease-out);
}
.video-banner.in .video-banner-title .underline::after,
.video-banner:hover .video-banner-title .underline::after { transform: scaleX(1); }
.video-banner-sub {
  margin-top: 28px; max-width: 520px;
  font-size: 17px; line-height: 1.55;
  color: rgba(245,241,232,.78); font-weight: 300;
}
.video-play-btn {
  display: flex; align-items: center; gap: 24px;
  background: transparent; border: none; cursor: pointer;
  color: var(--bd-bone);
  padding: 0;
  align-self: end;
  transition: transform .4s var(--ease-out);
}
.video-play-btn:hover { transform: translateX(8px); }
.video-play-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bd-green-2);
  color: var(--bd-ink);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease-out);
  box-shadow: 0 0 0 0 rgba(109,197,83,.4);
  animation: pulse-play 2.4s infinite;
}
.video-play-btn:hover .video-play-circle {
  transform: scale(1.08);
  background: var(--bd-bone);
}
.video-play-circle svg { margin-left: 4px; }
@keyframes pulse-play {
  0%   { box-shadow: 0 0 0 0 rgba(109,197,83,.5); }
  70%  { box-shadow: 0 0 0 28px rgba(109,197,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,197,83,0); }
}
.video-play-label { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.video-play-label .mono-sm { color: var(--bd-green-2); }
.video-play-label > span:nth-child(2) {
  font-family: var(--ff-display); font-size: 20px;
  letter-spacing: -.01em; color: var(--bd-bone);
}
@media (max-width: 900px) {
  .video-banner-content { grid-template-columns: 1fr; gap: 50px; padding: 80px 20px; }
  .video-play-circle { width: 72px; height: 72px; }
}

/* Video modal */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,12,16,.94);
  display: grid; place-items: center;
  padding: 40px;
  animation: video-modal-in .35s var(--ease-out);
  cursor: pointer;
}
@keyframes video-modal-in { from { opacity: 0; } to { opacity: 1; } }
.video-modal-frame {
  position: relative;
  width: 100%; max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  cursor: default;
  animation: video-frame-in .5s var(--ease-out);
}
@keyframes video-frame-in {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,241,232,.08);
  border: 1px solid rgba(245,241,232,.2);
  color: var(--bd-bone); cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.video-modal-close:hover { background: var(--bd-green-2); color: var(--bd-ink); transform: rotate(90deg); }

/* ===================== Terceirização (sales landing) ===================== */
.terc-hero-sales .terc-hero-content {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  align-items: center;
}
.terc-hero-bullets {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.terc-hero-bullets span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid rgba(245,241,232,.18);
  border-radius: 999px; font-size: 13px;
  color: var(--bd-bone);
}
.terc-hero-bullets svg { color: var(--bd-green-2); }
.terc-hero-card {
  background: rgba(245,241,232,.05);
  border: 1px solid rgba(245,241,232,.14);
  border-radius: 8px; padding: 36px;
  backdrop-filter: blur(20px);
  position: relative;
}
.terc-hero-card .mono { color: var(--bd-green-2); margin-bottom: 24px; }
.terc-hero-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.terc-hero-steps li {
  font-family: var(--ff-display); font-size: 18px;
  color: var(--bd-bone); padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,241,232,.08);
  font-weight: 300;
}
.terc-hero-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.terc-hero-steps li strong {
  color: var(--bd-green-2); margin-right: 12px;
  font-family: var(--ff-mono); font-size: 14px;
}
.terc-hero-card-foot {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(245,241,232,.08);
}

/* Section heads (shared) */
.terc-section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: end; padding-bottom: 60px;
}

/* Dores */
.terc-dores { padding: 120px 0; background: var(--bd-bone); border-top: 1px solid var(--bd-rule); color: var(--bd-ink); }
.terc-dores .h2 { color: var(--bd-ink); }
.terc-dores .body-l, .terc-dores .body { color: rgba(14,24,32,.72); }
.terc-dores .eyebrow { color: var(--bd-green-3); }
.terc-dores .eyebrow::before { background: var(--bd-green-3); }
.terc-dores-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid rgba(14,24,32,.1);
  border-left: 1px solid rgba(14,24,32,.1);
}
.terc-dor {
  padding: 48px 40px;
  border-right: 1px solid rgba(14,24,32,.1);
  border-bottom: 1px solid rgba(14,24,32,.1);
  position: relative; transition: background .4s;
}
.terc-dor:hover { background: rgba(14,24,32,.03); }
.terc-dor-icon {
  width: 48px; height: 48px; color: var(--bd-green-3);
  margin-bottom: 24px;
}
.terc-dor h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 26px; line-height: 1.15; letter-spacing: -.02em;
  color: var(--bd-ink); margin-bottom: 14px;
}
.terc-dor p {
  font-size: 15px; line-height: 1.6; font-weight: 300;
  color: rgba(14,24,32,.66); max-width: 480px;
}

/* Diferenciais (dark) */
.terc-diferenciais {
  background: var(--bd-ink); color: var(--bd-bone);
  padding: 140px 0;
  position: relative; overflow: hidden;
}
.terc-diferenciais::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60vw; height: 100%;
  background: radial-gradient(ellipse at right, rgba(34,72,40,.4), transparent 60%);
  pointer-events: none;
}
.terc-diferenciais .wrap { position: relative; z-index: 1; }
.terc-diferenciais-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid rgba(245,241,232,.1);
  border-left: 1px solid rgba(245,241,232,.1);
}
.terc-dif {
  padding: 56px 48px;
  border-right: 1px solid rgba(245,241,232,.1);
  border-bottom: 1px solid rgba(245,241,232,.1);
  position: relative;
  transition: background .4s;
}
.terc-dif:hover { background: rgba(109,197,83,.04); }
.terc-dif-num {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .2em;
  color: rgba(245,241,232,.4); margin-bottom: 24px;
}
.terc-dif h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 32px; line-height: 1.1; letter-spacing: -.025em;
  color: var(--bd-bone); margin-top: 14px; margin-bottom: 18px;
}
.terc-dif p {
  font-size: 16px; line-height: 1.6; font-weight: 300;
  color: rgba(245,241,232,.72); max-width: 520px;
}

/* Prova social marcas */
.terc-prova { padding: 120px 0; background: var(--bd-bone); color: var(--bd-ink); }
.terc-prova .h2 { color: var(--bd-ink); }
.terc-prova .body-l, .terc-prova .body { color: rgba(14,24,32,.72); }
.terc-prova .eyebrow { color: var(--bd-green-3); }
.terc-prova .eyebrow::before { background: var(--bd-green-3); }
.terc-prova-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: end; padding-bottom: 60px;
}
.terc-marcas-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid rgba(14,24,32,.1);
  border-left: 1px solid rgba(14,24,32,.1);
}
.terc-marca {
  aspect-ratio: 1/1;
  border-right: 1px solid rgba(14,24,32,.1);
  border-bottom: 1px solid rgba(14,24,32,.1);
  display: grid; place-items: center;
  padding: 30px;
  transition: background .35s;
}
.terc-marca:hover { background: var(--bd-ink); }
.terc-marca:hover .terc-marca-fallback { color: var(--bd-bone); }
.terc-marca img {
  max-width: 100%; max-height: 80%; width: auto; height: auto;
  object-fit: contain;
  transition: transform .4s;
}
.terc-marca:hover img { transform: scale(1.04); }
.terc-marca-fallback {
  font-family: var(--ff-display); font-weight: 600; font-size: 18px;
  color: var(--bd-ink); display: flex; align-items: center; justify-content: center;
  text-align: center; transition: color .35s;
}

/* FAQ */
.terc-faq { background: var(--bd-bone); border-top: 1px solid var(--bd-rule); color: var(--bd-ink); }
.terc-faq .h2 { color: var(--bd-ink); }
.terc-faq .body-l, .terc-faq .body { color: rgba(14,24,32,.72); }
.terc-faq .eyebrow { color: var(--bd-green-3); }
.terc-faq .eyebrow::before { background: var(--bd-green-3); }
.terc-faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.terc-faq-list { display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(14,24,32,.12);
}
.terc-faq-item {
  border-bottom: 1px solid rgba(14,24,32,.12);
  cursor: pointer; transition: background .3s;
}
.terc-faq-item:hover { background: rgba(14,24,32,.02); }
.terc-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  font-family: var(--ff-display); font-weight: 600; font-size: 22px;
  letter-spacing: -.01em; color: var(--bd-ink); line-height: 1.25;
}
.terc-faq-icon {
  font-family: var(--ff-display); font-weight: 300; font-size: 32px;
  color: var(--bd-green-3); transition: transform .35s;
  width: 32px; text-align: center;
  flex-shrink: 0; margin-left: 24px;
}
.terc-faq-item.open .terc-faq-icon { color: var(--bd-green-2); }
.terc-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.terc-faq-item.open .terc-faq-a { max-height: 400px; }
.terc-faq-a p {
  padding: 0 0 28px;
  color: rgba(14,24,32,.7);
  font-size: 16px; line-height: 1.65; font-weight: 300;
  color: rgba(14,24,32,.7); max-width: 700px;
}

/* Form CTA */
.terc-form-wrap { background: var(--bd-ink); padding: 140px 0; position: relative; overflow: hidden; color: var(--bd-bone); }
.terc-form-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(34,72,40,.35), transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(109,197,83,.12), transparent 60%);
  pointer-events: none;
}
.terc-form-wrap .wrap { position: relative; z-index: 1; }
.terc-form-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: start;
}
.terc-form-side h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(40px, 4.5vw, 68px); line-height: .98;
  letter-spacing: -.035em; color: var(--bd-bone);
}
.terc-form-side h2 .underline {
  position: relative; color: var(--bd-green-2);
}
.terc-form-side h2 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.05em;
  height: 4px; background: var(--bd-green-2); opacity: .4;
}
.terc-form-side p { color: rgba(245,241,232,.78); line-height: 1.6; }
.terc-form-trust {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(245,241,232,.1);
}
.terc-form-trust > div {
  display: flex; flex-direction: column; gap: 4px;
}
.terc-form-trust strong {
  font-family: var(--ff-display); font-size: 22px; color: var(--bd-green-2);
  font-weight: 700; letter-spacing: -.01em;
}
.terc-form-trust span { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; color: rgba(245,241,232,.55); }
.terc-form-card {
  background: var(--bd-bone);
  border-radius: 8px; padding: 48px;
  color: var(--bd-ink);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.terc-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.terc-form .form-row.single { grid-template-columns: 1fr; }
.terc-form .form-field { display: flex; flex-direction: column; gap: 8px; }
.terc-form label {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em;
  color: rgba(14,24,32,.65); text-transform: uppercase;
}
.terc-form input, .terc-form select, .terc-form textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(14,24,32,.2);
  padding: 12px 0; font-family: var(--ff-body); font-size: 15px;
  color: var(--bd-ink); outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.terc-form input:focus, .terc-form select:focus, .terc-form textarea:focus {
  border-color: var(--bd-green-2);
}
.terc-form textarea { resize: vertical; }
.terc-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230E1820' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
  padding-right: 24px;
}
.terc-form-sent { text-align: center; padding: 40px 0; }
.terc-form-sent-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(109,197,83,.12); color: var(--bd-green-3);
  display: grid; place-items: center;
  margin: 0 auto 28px;
}
.terc-form-sent h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 28px;
  color: var(--bd-ink); letter-spacing: -.02em; margin-bottom: 16px;
}
.terc-form-sent p {
  font-size: 16px; line-height: 1.55; color: rgba(14,24,32,.7);
  max-width: 420px; margin: 0 auto 32px;
}

@media (max-width: 1100px) {
  .terc-hero-sales .terc-hero-content { grid-template-columns: 1fr; gap: 60px; }
  .terc-hero-card { max-width: 480px; }
  .terc-section-head, .terc-prova-head { grid-template-columns: 1fr; gap: 40px; }
  .terc-faq-grid, .terc-form-grid { grid-template-columns: 1fr; gap: 60px; }
  .terc-marcas-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .terc-dores-grid, .terc-diferenciais-grid { grid-template-columns: 1fr; }
  .terc-marcas-row { grid-template-columns: repeat(2, 1fr); }
  .terc-form-card { padding: 32px 24px; }
  .terc-form .form-row { grid-template-columns: 1fr; }
}

/* ===================== Page transition ===================== */
.page-enter { animation: page-in .7s var(--ease-out) both; }
@keyframes page-in {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
