/* ============================================================
   PAGINAPRONTA.COM — V4  |  style.css
   Estética: Clean Authority — Branco puro, System Font (SF Pro), Terracota
   ============================================================ */

/* ---- Variáveis ---- */
:root {
  --bg:        #FAFAF8;
  --bg-2:      #F2F0EC;
  --bg-dark:   #12100E;
  --bg-dark-2: #1C1A17;
  --ink:       #12100E;
  --ink-2:     #3A3632;
  --muted:     #8A8278;
  --terra:     #C4623A;
  --terra-lt:  #D4784E;
  --terra-dk:  #A04F2E;
  --border:    #E4E0DA;
  --border-dk: rgba(255,255,255,0.1);

  /* Specialty colors */
  --blue:   #2563EB;
  --green:  #16A34A;
  --navy:   #1E3A5F;
  --purple: #7C3AED;
  --terra2: #C4623A;

  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius:  6px;
  --max-w:   1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: clamp(0.93rem, 1.4vw, 1rem);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Layout ---- */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ---- Tipografia utilitária ---- */
.kicker {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.kicker--light { color: rgba(255,255,255,0.6); }

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-header h2 em {
  font-style: italic;
  color: var(--terra);
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.75;
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.22s;
  white-space: nowrap;
}
.btn--terra {
  background: var(--terra);
  color: #fff;
}
.btn--terra:hover {
  background: var(--terra-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196,98,58,0.28);
}
.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover {
  background: var(--bg-2);
}
.btn--white-inv {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn--white-inv:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn--lg { padding: 1rem 2.2rem; font-size: 0.95rem; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Animações de entrada ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- NAVBAR ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
}
.nav__logo em { font-style: italic; color: var(--terra); }
.nav__logo span { color: var(--muted); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--terra); }

.nav__cta {
  background: var(--terra) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--terra-lt) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  padding: 110px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(196,98,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}


.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--terra);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2rem;
}

/* Garante que o texto da hero fique visível mesmo antes da animação */
.hero .reveal.visible {
  opacity: 1;
  color: inherit;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.proof-item span {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.proof-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Browser Mockup */
.hero__visual {
  position: relative;
}

.browser-mock {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(18,16,14,0.12), 0 4px 16px rgba(18,16,14,0.06);
  background: #fff;
}

.browser-bar {
  background: #F0EFED;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA41; }
.browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.browser-body {
  padding: 1rem;
  background: var(--bg);
}

.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.mock-logo {
  width: 60px; height: 10px;
  background: var(--terra);
  border-radius: 3px;
  opacity: 0.7;
}
.mock-links {
  display: flex;
  gap: 8px;
}
.mock-links span {
  width: 28px; height: 8px;
  background: var(--border);
  border-radius: 3px;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  background: white;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  align-items: center;
}
.mock-text { display: flex; flex-direction: column; gap: 5px; }
.mock-h1 {
  height: 12px;
  background: var(--ink);
  border-radius: 3px;
  opacity: 0.15;
}
.mock-h1--short { width: 60%; opacity: 0.1; }
.mock-p { height: 8px; background: var(--border); border-radius: 3px; }
.mock-p--short { width: 75%; }
.mock-btn {
  width: 80px; height: 24px;
  background: var(--terra);
  border-radius: 4px;
  opacity: 0.8;
  margin-top: 4px;
}
.mock-img {
  height: 60px;
  background: linear-gradient(135deg, var(--bg-2), var(--border));
  border-radius: 4px;
}
.mock-tags {
  display: flex;
  gap: 0.4rem;
}
.mock-tags span {
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
}

/* Floating cards on hero visual */
.hero__result-card {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(18,16,14,0.2);
  animation: float-card 3s ease-in-out infinite;
}
.result-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(196,98,58,0.2);
  display: grid;
  place-content: center;
  color: var(--terra);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero__result-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}
.hero__result-card span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.hero__spec-tags {
  position: absolute;
  top: -1rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(18,16,14,0.08);
  white-space: nowrap;
  animation: float-tag 3s ease-in-out infinite;
}
.spec-tag i { color: var(--terra); }
.spec-tag:nth-child(2) { animation-delay: 0.4s; }
.spec-tag:nth-child(3) { animation-delay: 0.8s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-tag {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}

/* ---- PARA QUEM ---- */
.para-quem {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}

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

.pq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pq-card:hover {
  border-color: var(--terra);
  box-shadow: 0 8px 28px rgba(196,98,58,0.1);
  transform: translateY(-4px);
}

.pq-card--cta {
  background: var(--bg-dark);
  border-color: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.pq-card--cta:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.pq-card--cta h3 { color: #fff; }
.pq-card--cta p { color: rgba(255,255,255,0.6); }

.pq-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.pq-icon--blue,
.pq-icon--green,
.pq-icon--navy,
.pq-icon--purple,
.pq-icon--terra  { background: rgba(196,98,58,0.1);  color: var(--terra); }

.pq-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.pq-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.pq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pq-tags span {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  background: var(--bg-2);
  border-radius: 50px;
  color: var(--muted);
}

/* ---- MARQUEE ---- */
.marquee-strip {
  overflow: hidden;
  background: var(--bg-dark);
  padding: 0.8rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.marquee-track .sep { color: var(--terra); opacity: 0.7; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- PROJETOS ---- */
.projetos {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-2);
}

/* Projeto destaque */
.proj-feat {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.proj-feat__img {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.proj-feat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.proj-feat__img:hover img { transform: scale(1.03); }

.proj-feat__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,16,14,0.4);
  display: grid;
  place-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.proj-feat__img:hover .proj-feat__overlay { opacity: 1; }

.proj-feat__info {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.proj-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.proj-cat--blue   { background: rgba(37,99,235,0.1);  color: var(--blue); }
.proj-cat--green  { background: rgba(22,163,74,0.1);  color: var(--green); }
.proj-cat--navy   { background: rgba(30,58,95,0.1);   color: var(--navy); }
.proj-cat--purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.proj-cat--terra  { background: rgba(196,98,58,0.1);  color: var(--terra); }

.proj-feat__info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.proj-feat__info h3 em { font-style: italic; color: var(--terra); }

.proj-feat__info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.proj-feat__metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.metric span {
  font-size: 0.78rem;
  color: var(--muted);
}

.proj-feat__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.proj-feat__tech span {
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  background: var(--bg-2);
  border-radius: 50px;
  color: var(--muted);
}

/* Grid projetos */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proj-grid .proj-card:first-child,
.proj-grid .proj-card:nth-child(2) {
  /* primeiros dois cards um pouco maiores */
}

.proj-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.proj-card:hover {
  border-color: rgba(196,98,58,0.3);
  box-shadow: 0 8px 28px rgba(18,16,14,0.08);
  transform: translateY(-4px);
}

.proj-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.proj-card:hover .proj-card__img img { transform: scale(1.05); }

.proj-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,16,14,0.5);
  display: grid;
  place-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.proj-card:hover .proj-card__overlay { opacity: 1; }
.proj-card__overlay a {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.proj-card__overlay a:hover { background: rgba(255,255,255,0.15); }

.proj-card__info {
  padding: 1.2rem;
}
.proj-card__info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0.4rem 0 0.5rem;
}
.proj-card__info p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.proj-card__metric {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- PROCESSO ---- */
.processo {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.proc-step {
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  border-right: 1px solid var(--border);
  position: relative;
  background: #fff;
  transition: background 0.25s;
}
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: var(--bg); }

.proc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(196,98,58,0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.proc-icon {
  font-size: 1.3rem;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.proc-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.proc-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.proc-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(196,98,58,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* ---- RESULTADOS ---- */
.resultados {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--bg-dark);
}

.res-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.res-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.res-text h2 em {
  font-style: italic;
  color: var(--terra);
}
.res-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.res-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.res-stat {
  background: var(--bg-dark-2);
  padding: 1.5rem;
  transition: background 0.2s;
}
.res-stat:hover { background: #2A2420; }
.res-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.res-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ---- DEPOIMENTOS ---- */
.depoimentos {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-2);
}

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

.dep-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dep-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  flex: 1;
}
.dep-card p::before { content: '\201C'; color: var(--terra); font-size: 1.5em; line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }

.dep-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.dep-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.dep-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}
.dep-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- CTA FINAL ---- */
.cta-final {
  background: var(--bg-dark);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 30%;
  margin: -300px 0 0 -300px;
  background: radial-gradient(circle, rgba(196,98,58,0.3) 0%, rgba(196,98,58,0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.cta-final__wrap {
  position: relative;
  z-index: 1;
}

.cta-final__deco {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.cta-final__content .kicker { color: rgba(255,255,255,0.5); }

.cta-final__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.cta-final__content h2 em {
  font-style: italic;
  color: var(--terra);
}
.cta-final__content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-final__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-final__note i { color: var(--terra); opacity: 0.7; }

.cta-final .btn--ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-final .btn--ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

/* ---- FAQ ---- */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-warm);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---- CONTATO ---- */
.contato {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}

.contato__wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contato__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin: 0.75rem 0;
}
.contato__title em { font-style: italic; color: var(--terra); }

.contato__left > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.channel:hover {
  border-color: var(--terra);
  box-shadow: 0 4px 12px rgba(196,98,58,0.1);
}
.channel__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(196,98,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--terra);
  flex-shrink: 0;
}
.channel__icon--green { background: rgba(37,211,102,0.1); color: #25D366; }
.channel div { display: flex; flex-direction: column; }
.channel strong { font-size: 0.88rem; color: var(--ink); font-weight: 600; }
.channel span   { font-size: 0.8rem; color: var(--muted); }

.contato__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.contato__guarantee i { color: var(--green); margin-top: 0.2rem; flex-shrink: 0; }

/* Form */
.contato__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field:last-child { margin-bottom: 0; }

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #C0BAB2; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,98,58,0.1);
}
.field select {
  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='%238A8278' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--bg);
  padding-right: 2.5rem;
  cursor: pointer;
}
.field option { background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }

.form-feedback {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.4em;
  margin-top: 0.5rem;
}
.form-feedback.success { color: var(--green); }
.form-feedback.error   { color: #DC2626; }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.5rem;
}
.footer__logo em { font-style: italic; color: var(--terra); }
.footer__logo span { color: rgba(255,255,255,0.3); }

.footer__brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  font-style: italic;
  font-family: var(--font-display);
}

.footer__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer__compliance span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  color: rgba(255,255,255,0.4);
}

.footer__nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.footer__col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- WhatsApp FAB ---- */
.wa-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  z-index: 90;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 26px rgba(37,211,102,0.45);
}

/* ---- FOOTER LEGAL + MODAIS ---- */
.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }
.footer__legal span { color: rgba(255,255,255,0.2); }

.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.legal-modal.open {
  display: flex;
}
.legal-modal__content {
  background: #fff;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}
.legal-modal__content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.legal-modal__content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.legal-modal__content p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.7;
}
.legal-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.legal-modal__close:hover { background: var(--bg-2); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}
.cookie-banner p a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner p a:hover { color: var(--terra-dk); }
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-banner__actions .btn--ghost {
  border-color: var(--border);
  color: var(--ink-2);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-banner__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
  .pq-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-feat { grid-template-columns: 1fr; }
  .proj-feat__img { aspect-ratio: 16/7; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-step { border-bottom: 1px solid var(--border); }
  .proc-step:nth-child(2) { border-right: none; }
  .proc-step:nth-child(3) { border-bottom: none; }
  .res-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .dep-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.3rem; }
  .nav__links.open .nav__cta {
    font-size: 1rem !important;
    padding: 0.75rem 1.8rem !important;
  }
  .nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }

  .hero__wrap { grid-template-columns: 1fr; }
  .hero__visual { display: none; }

  .proj-grid { grid-template-columns: repeat(2, 1fr); }

  .contato__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pq-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: none; }
  .field-row { grid-template-columns: 1fr; }
  .hero__proof { flex-wrap: wrap; gap: 1rem; }
  .proof-sep { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
  .footer__top { flex-direction: column; }
  .footer__nav { flex-wrap: wrap; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .contato__channels { width: 100%; }
  .channel { padding: 0.75rem; }

  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .section-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

/* ============================================================
   ACESSIBILIDADE
   ============================================================ */

/* Focus visible para navegação por teclado */
:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

/* Indicador de erro em campos */
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--terra);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion para respeitar preferências do SO */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

