/* ═══════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════ */
:root {
  --content-max: 1280px;
  /* Palette — light & airy dominant */
  --white:   #FFFFFF;
  --bg:      #FDFAF6;        /* warm off-white */
  --bg2:     #F5EFE4;        /* warm sand light */
  --sand:    #E8D9C0;        /* sand */
  --caramel: #C09A6B;        /* caramel accent */
  --brown:   #8B5E3C;        /* brown — headlines & accents */
  --espresso:#3D1F0D;        /* dark — used sparingly */
  --ink:     #2A1505;        /* near-black text */
  --muted:   #8A6E55;        /* muted body text */
  --border:  rgba(192,154,107,.2);

  /* Typography */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Outfit', sans-serif;

  /* Radii — rounded, organic */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;
  --r-pill:100px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.0, 0, .2, 1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ═══════════════════════════════════
   RESET
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* ═══════════════════════════════════
   UTILITY
═══════════════════════════════════ */
.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(28px, 6vw, 80px); }
.section { padding: clamp(72px, 10vw, 128px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--caramel);
  border-radius: 2px;
}

.headline {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.hl-xl  { font-size: clamp(44px, 6.5vw, 88px); }
.hl-lg  { font-size: clamp(36px, 5vw, 64px); }
.hl-md  { font-size: clamp(28px, 3.5vw, 44px); }
.hl-sm  { font-size: clamp(22px, 2.5vw, 30px); }
.italic { font-style: italic; color: var(--caramel); }

.body-lg { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.8; font-weight: 300; color: var(--muted); }
.body-md { font-size: 15px; line-height: 1.8; font-weight: 300; color: var(--muted); }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--espresso);
  color: #fff;
  box-shadow: 0 4px 20px rgba(61,31,13,.15);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,31,13,.22);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: #fff;
  transform: translateY(-2px);
}

.btn-caramel {
  background: var(--caramel);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,154,107,.3);
}
.btn-caramel:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,94,60,.3);
}

.btn-ghost {
  background: rgba(255,255,255,.85);
  color: var(--espresso);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--caramel);
  transform: translateY(-2px);
}

/* WhatsApp icon inline */
.ico-wa { width: 18px; height: 18px; flex-shrink: 0; }

/* Arrow */
.ico-arr { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s; }
.btn:hover .ico-arr { transform: translateX(3px); }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  padding-left: max(clamp(28px, 6vw, 80px), calc((100vw - var(--content-max)) / 2));
  padding-right: max(clamp(28px, 6vw, 80px), calc((100vw - var(--content-max)) / 2));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background .4s, box-shadow .4s, height .3s;
}
#nav.scrolled {
  background: rgba(253,250,246,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(192,154,107,.15);
  height: 64px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo .dot { color: var(--caramel); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--caramel);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
  background: none;
  border: none;
}
.ham span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .35s var(--ease);
  transform-origin: center;
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
#mob-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 590;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
#mob-menu.open { transform: translateY(0); }
#mob-menu a {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 400;
  color: var(--ink);
  opacity: .8;
  transition: opacity .2s, color .2s;
}
#mob-menu a:hover { opacity: 1; color: var(--caramel); }
.mob-wa-btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--espresso);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
#hero {
  min-height: 100svh;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px,5vw,80px);
  padding-top: 72px;
  padding-left: max(clamp(28px, 6vw, 80px), calc((100vw - var(--content-max)) / 2));
  padding-right: max(clamp(28px, 6vw, 80px), calc((100vw - var(--content-max)) / 2));
  overflow: hidden;
  position: relative;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob-1 {
  width: clamp(280px,35vw,480px);
  height: clamp(280px,35vw,480px);
  background: radial-gradient(circle, rgba(232,217,192,.6) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.blob-2 {
  width: clamp(180px,22vw,300px);
  height: clamp(180px,22vw,300px);
  background: radial-gradient(circle, rgba(192,154,107,.12) 0%, transparent 70%);
  bottom: 10%; left: 5%;
}

.hero-content {
  padding: clamp(48px,8vh,100px) 0 clamp(48px,8vh,100px);
  position: relative; z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--caramel);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--caramel); }

.hero-sub {
  font-size: clamp(15px,1.4vw,17px);
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.trust-ico { font-size: 14px; }
.trust-sep {
  width: 1px; height: 16px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  padding: clamp(32px,6vw,80px) clamp(20px,4vw,48px) clamp(32px,6vw,80px) 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Photo placeholder — main */
.ph-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sand) 0%, var(--bg2) 100%);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  box-shadow: 0 24px 64px rgba(61,31,13,.08);
}
.ph-inner {
  text-align: center;
  padding: clamp(20px,3vw,36px);
  border: 1.5px dashed rgba(139,94,60,.25);
  border-radius: var(--r-lg);
  max-width: 280px;
}
.ph-icon { font-size: clamp(32px,4vw,44px); display: block; margin-bottom: 10px; }
.ph-label { font-size: 13px; font-weight: 500; color: var(--brown); letter-spacing: .06em; line-height: 1.5; }
.ph-hint { display: block; margin-top: 6px; font-size: 11px; color: var(--muted); font-style: italic; line-height: 1.5; }

/* Floating card on hero */
.hero-float-card {
  position: absolute;
  bottom: clamp(28px,5vw,56px);
  left: clamp(-20px,-3vw,-32px);
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(61,31,13,.1);
  max-width: 220px;
  border: 1px solid var(--border);
}
.float-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.float-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: #fff;
  flex-shrink: 0;
}
.float-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.float-role { font-size: 11px; color: var(--caramel); letter-spacing: .06em; }
.float-text {
  font-size: 12px;
  font-style: italic;
  font-family: var(--serif);
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════
   MARQUEE
═══════════════════════════════════ */
.marquee-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
  animation: scroll-left 24s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--caramel);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   PAIN / DOR
═══════════════════════════════════ */
#dor {
  background: var(--bg);
}
.dor-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
}
.dor-left h2 { color: var(--ink); margin-bottom: 20px; }
.dor-intro { margin-bottom: 32px; }

.dor-questions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.dor-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,217,192,.6);
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  transition: color .2s;
}
.dor-q::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--caramel);
  transition: background .2s;
}
.dor-q:hover { color: var(--brown); }
.dor-q:hover::before { background: var(--caramel); }

/* Right — highlight card */
.dor-card {
  background: var(--espresso);
  border-radius: var(--r-xl);
  padding: clamp(32px,4vw,52px);
  position: relative;
  overflow: hidden;
}
.dor-card::before {
  content: '\201C';
  position: absolute;
  top: -20px; right: 24px;
  font-family: var(--serif);
  font-size: 160px;
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}
.dor-card-quote {
  font-family: var(--serif);
  font-size: clamp(18px,2vw,24px);
  font-style: italic;
  font-weight: 300;
  color: var(--bg2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.dor-card-note {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(232,217,192,.55);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════
   SOBRE
═══════════════════════════════════ */
#sobre {
  background: var(--bg2);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-ph {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sand) 30%, var(--caramel) 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(61,31,13,.1);
}
.sobre-ph .ph-inner {
  border-color: rgba(255,255,255,.3);
}
.sobre-ph .ph-label { color: #fff; }
.sobre-ph .ph-hint { color: rgba(255,255,255,.65); }

/* Floating mini card */
.sobre-mini {
  position: absolute;
  bottom: -20px;
  right: -28px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: 0 12px 36px rgba(61,31,13,.1);
  border: 1px solid var(--border);
  min-width: 160px;
}
.sobre-mini-ico { font-size: 24px; margin-bottom: 6px; }
.sobre-mini-val {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--brown);
  font-weight: 400;
}
.sobre-mini-lbl {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}

.sobre-text h2 { color: var(--ink); margin-bottom: 20px; }
.sobre-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}
.sobre-text p strong { font-weight: 500; color: var(--brown); }
.sobre-quote {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  border-left: 3px solid var(--caramel);
  margin: 28px 0 32px;
}
.sobre-quote p {
  font-family: var(--serif);
  font-size: clamp(16px,1.6vw,19px);
  font-style: italic;
  color: var(--brown);
  line-height: 1.65;
  margin: 0;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.chip {
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--brown);
  background: #fff;
  transition: all .2s;
}
.chip:hover { background: var(--brown); color: #fff; border-color: var(--brown); }

/* ═══════════════════════════════════
   SERVIÇOS
═══════════════════════════════════ */
#servicos {
  background: var(--bg);
}
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(48px,6vw,80px);
}
.sec-head h2 { color: var(--ink); }
.sec-head-right p { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(232,217,192,.5);
  border-radius: var(--r-xl);
  padding: clamp(24px,3vw,36px);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(61,31,13,.08);
  border-color: var(--caramel);
}

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .35s;
  flex-shrink: 0;
}
.svc-icon { font-size: 24px; }
.svc-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--serif);
  font-size: 13px;
  color: rgba(192,154,107,.3);
  font-weight: 400;
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(18px,1.8vw,22px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.svc-cta { text-align: center; margin-top: clamp(40px,5vw,64px); }

/* ═══════════════════════════════════
   PARA QUEM
═══════════════════════════════════ */
#para-quem {
  background: var(--bg2);
}
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
}
.pq-text h2 { color: var(--ink); margin-bottom: 16px; }
.pq-lead { margin-bottom: 32px; }
.pq-list { list-style: none; margin-bottom: 36px; }
.pq-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: var(--r-md);
  transition: background .25s;
  margin-bottom: 4px;
}
.pq-item:hover { background: rgba(255,255,255,.7); }
.pq-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(61,31,13,.06);
}
.pq-text-p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  padding-top: 8px;
}
.pq-text-p strong { font-weight: 600; color: var(--brown); }

.pq-img-col { position: relative; }
.pq-ph {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--sand) 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(61,31,13,.08);
}
/* Deco ring */
.pq-ring {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(192,154,107,.25);
}
.pq-ring2 {
  position: absolute;
  bottom: 20px; left: -28px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--caramel);
  opacity: .08;
}

/* ═══════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════ */
#diferenciais {
  background: var(--bg);
}
.diff-head { text-align: center; max-width: 640px; margin: 0 auto clamp(48px,6vw,80px); }
.diff-head h2 { color: var(--ink); margin-bottom: 16px; }
.diff-head p { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: clamp(48px,6vw,72px);
}
.diff-card {
  background: #fff;
  border: 1px solid rgba(232,217,192,.5);
  border-radius: var(--r-xl);
  padding: clamp(24px,3vw,36px);
  transition: all .35s var(--ease);
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(61,31,13,.07);
  border-color: var(--caramel);
}
.diff-n {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(192,154,107,.18);
  line-height: 1;
  margin-bottom: 14px;
  transition: color .35s;
}
.diff-card:hover .diff-n { color: rgba(192,154,107,.4); }
.diff-t {
  font-family: var(--serif);
  font-size: clamp(17px,1.7vw,21px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.diff-d { font-size: 14px; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* ═══════════════════════════════════
   PROCESSO
═══════════════════════════════════ */
#processo {
  background: var(--espresso);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
  margin-top: -1px;
}
.proc-head { text-align: center; max-width: 600px; margin: 0 auto clamp(48px,6vw,80px); }
.proc-head .eyebrow { color: var(--sand); }
.proc-head .eyebrow::before { background: var(--sand); }
.proc-head h2 { color: var(--bg); margin-bottom: 16px; }
.proc-head p { color: rgba(232,217,192,.55); font-size: 15px; line-height: 1.8; font-weight: 300; }

.proc-track {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  position: relative;
  margin-bottom: clamp(48px,6vw,80px);
}
/* Connecting line */
.proc-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--caramel), rgba(192,154,107,.2));
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(8px,2vw,20px);
  position: relative;
}
.proc-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(192,154,107,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--caramel);
  background: var(--espresso);
  margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: all .3s;
}
.proc-step:hover .proc-circle {
  background: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}
.proc-step-t {
  font-family: var(--serif);
  font-size: clamp(15px,1.4vw,17px);
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 8px;
  line-height: 1.3;
}
.proc-step-d {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(232,217,192,.45);
  font-weight: 300;
}

.proc-cta { text-align: center; }

/* ═══════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════ */
#depoimentos {
  background: var(--bg2);
}
.dep-head { text-align: center; max-width: 560px; margin: 0 auto clamp(48px,5vw,80px); }
.dep-head h2 { color: var(--ink); margin-bottom: 16px; }
.dep-head p { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dep-card {
  background: #fff;
  border: 1px solid rgba(232,217,192,.5);
  border-radius: var(--r-xl);
  padding: clamp(24px,3vw,36px);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.dep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(61,31,13,.07);
}
.dep-stars {
  display: flex; gap: 3px;
  margin-bottom: 16px;
}
.dep-star { width: 14px; height: 14px; fill: var(--caramel); }
.dep-text {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: #fff;
  flex-shrink: 0;
}
.dep-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.dep-course { font-size: 12px; color: var(--caramel); }

/* ═══════════════════════════════════
   CTA FUNDO DE FUNIL
═══════════════════════════════════ */
#cta-ads {
  background: var(--bg);
}
.cta-ads-box {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--sand) 100%);
  border-radius: var(--r-xl);
  padding: clamp(48px,6vw,80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--border);
}
.cta-ads-text h2 { color: var(--ink); margin-bottom: 14px; }
.cta-ads-text p { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; max-width: 560px; }
.cta-ads-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.cta-ads-action .micro {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
  max-width: 200px;
  line-height: 1.5;
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
#faq {
  background: var(--bg2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px,6vw,96px);
  align-items: start;
}
.faq-left h2 { color: var(--ink); margin-bottom: 16px; }
.faq-left p { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(232,217,192,.5);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: var(--caramel);
  box-shadow: 0 8px 28px rgba(61,31,13,.06);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.faq-btn:hover { color: var(--brown); }
.faq-ico {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--spring);
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--espresso);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

/* ═══════════════════════════════════
   CTA FINAL
═══════════════════════════════════ */
#cta-final {
  background: var(--bg);
  padding-bottom: clamp(72px,10vw,128px);
}
.cta-final-box {
  background: var(--espresso);
  border-radius: var(--r-xl);
  padding: clamp(56px,7vw,96px) clamp(32px,5vw,80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-box::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-final-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(192,154,107,.06);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final-box .eyebrow { color: var(--sand); }
.cta-final-box .eyebrow::before { background: var(--sand); }
.cta-final-box h2 { color: var(--bg); margin-bottom: 20px; }
.cta-final-box p {
  font-size: clamp(15px,1.4vw,17px);
  line-height: 1.8;
  color: rgba(232,217,192,.6);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.cta-final-note {
  font-size: 12px;
  color: rgba(232,217,192,.35);
  letter-spacing: .08em;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--ink);
  padding: clamp(56px,7vw,96px) 0 clamp(28px,3vw,40px);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px,5vw,80px);
  margin-bottom: clamp(40px,5vw,64px);
}
.foot-logo {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--bg);
  margin-bottom: 14px;
}
.foot-logo .dot { color: var(--caramel); }
.foot-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,239,228,.35);
  font-weight: 300;
  max-width: 280px;
}
.foot-seo {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(245,239,228,.35);
  max-width: 920px;
}
.foot-seo p + p { margin-top: 10px; }
.foot-col h4 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
  font-weight: 600;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a,
.foot-col ul li span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,239,228,.4);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-col ul li a:hover { color: var(--sand); }
.foot-divider {
  height: 1px;
  background: rgba(245,239,228,.07);
  margin-bottom: 28px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom p { font-size: 12px; color: rgba(245,239,228,.2); letter-spacing: .06em; }

/* ═══════════════════════════════════
   WA FLOAT BUTTON
═══════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: clamp(20px,4vw,36px);
  right: clamp(20px,4vw,36px);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  text-decoration: none;
  transition: all .3s var(--ease);
  overflow: hidden;
}
.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(37,211,102,.45);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float-text { white-space: nowrap; }
/* Pulse */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse-wa 2.5s ease-out infinite;
}
@keyframes pulse-wa {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.2); }
}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.sr.sl { transform: translateX(-28px); }
.sr.sr2 { transform: translateX(28px); }
.sr.in { opacity: 1; transform: translate(0); }
.sr:nth-child(1) { transition-delay: .05s; }
.sr:nth-child(2) { transition-delay: .12s; }
.sr:nth-child(3) { transition-delay: .19s; }
.sr:nth-child(4) { transition-delay: .26s; }
.sr:nth-child(5) { transition-delay: .33s; }
.sr:nth-child(6) { transition-delay: .40s; }

/* ═══════════════════════════════════
   RESPONSIVE — tablet
═══════════════════════════════════ */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .ham { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding-top: clamp(96px,14vh,120px); }

  .dor-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-mini { display: none; }
  .sec-head { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .pq-grid { grid-template-columns: 1fr; }
  .pq-img-col { display: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .proc-track { grid-template-columns: 1fr; gap: 28px; }
  .proc-track::before { display: none; }
  .proc-step { flex-direction: row; text-align: left; align-items: flex-start; }
  .proc-circle { flex-shrink: 0; margin-bottom: 0; margin-right: 0; }
  .proc-step-content { display: flex; flex-direction: column; }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .cta-ads-box { grid-template-columns: 1fr; text-align: center; }
  .cta-ads-action { align-self: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .wa-float-text { display: none; }
  .wa-float { padding: 16px; }
  .hero-trust { gap: 12px; }
  .trust-sep { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-ads-box { padding: 32px 24px; }
  .cta-final-box { padding: 44px 24px; }
}
