/* ============================================
   MORE SECTIONS
   ============================================ */

/* ----- PILLARS (4 services) ----- */
.pillars {
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 44px 38px 44px;
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column;
  transition: background .4s var(--ease);
  cursor: default;
}
.pillar:hover { background: color-mix(in oklab, var(--accent-soft) 35%, var(--bg)); }

.pillar-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pillar-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 28px 0 14px;
  letter-spacing: -0.015em;
}
.pillar-desc {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 38ch;
}
.pillar-mark {
  margin-top: auto;
  padding-top: 36px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.pillar-mark .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.pillar svg.icon {
  position: absolute;
  top: 38px; right: 38px;
  width: 44px; height: 44px;
  color: var(--ink);
  opacity: 0.85;
  transition: transform .5s var(--ease), color .3s;
}
.pillar:hover svg.icon { transform: rotate(-6deg) scale(1.06); color: var(--accent); }

@media (max-width: 760px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillars-foot {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}
.pillars-foot .closing {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
  max-width: 24ch;
}
.pillars-foot .closing em { color: var(--accent); }

/* ----- FIT (Para quem é / não é) ----- */
.fit {
  padding: 140px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.fit h2 { margin-bottom: 60px; max-width: 16ch; }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.fit-col {
  background: var(--bg);
  padding: 40px 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.fit-col.yes { border-color: var(--accent); position: relative; }
.fit-col.yes::after {
  content: "VOCÊ";
  position: absolute;
  top: -10px; left: 38px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 4px;
}
.fit-col h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
}
.fit-col li:last-child { border-bottom: 0; }
.fit-col .ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.fit-col.yes .ic { background: var(--accent); color: var(--bg); }
.fit-col.no .ic { background: var(--line-2); color: var(--ink); }

@media (max-width: 760px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ----- PROCESS (diagnóstico) ----- */
.process {
  padding: 160px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.process h2 { font-size: clamp(40px, 6vw, 90px); max-width: 12ch; }
@media (max-width: 860px) { .process-head { grid-template-columns: 1fr; } }

.process-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
}
.process-row {
  display: contents;
}
.process-row .num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink);
  padding: 36px 24px 36px 0;
  border-top: 1px solid var(--line);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color .3s, transform .4s var(--ease);
}
.process-row .content {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: baseline;
  transition: padding-left .3s var(--ease);
}
.process-row:hover .num { color: var(--accent); transform: translateX(6px); }
.process-row:hover .content { padding-left: 24px; }

.process-row:last-child .num,
.process-row:last-child .content {
  border-bottom: 1px solid var(--line);
}
.process-row .title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
}
.process-row .det {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 38ch;
}
@media (max-width: 760px) {
  .process-list { grid-template-columns: 60px 1fr; }
  .process-row .content { grid-template-columns: 1fr; gap: 12px; }
}

.process-cta {
  margin-top: 60px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.process-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ----- TESTIMONIALS (wall of love) ----- */
.wall {
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}
.wall-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.wall-head h2 { max-width: 16ch; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-2);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.rating-badge .stars { color: var(--accent); letter-spacing: 2px; }
.rating-badge b {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}
.rating-badge .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
}

.wall-grid {
  columns: 3;
  column-gap: 24px;
}
@media (max-width: 1000px) { .wall-grid { columns: 2; } }
@media (max-width: 640px) { .wall-grid { columns: 1; } }

.testi {
  break-inside: avoid;
  padding: 32px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 24px;
  transition: transform .4s var(--ease), border-color .3s;
}
.testi:hover { transform: translateY(-3px); border-color: var(--ink); }
.testi .quote {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.testi .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 17px;
}
.testi .who { line-height: 1.3; }
.testi .who b { font-size: 14px; font-weight: 500; display: block; }
.testi .who span { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.testi .stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; margin-bottom: 14px; }

/* ----- FAQ ----- */
.faq { padding: 140px 0; border-bottom: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  gap: 24px;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .3s var(--ease);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--ink);
  left: 50%; top: 50%;
  transition: transform .3s var(--ease);
}
.faq-q .plus::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }

/* ----- BIG CTA ----- */
.bigcta {
  padding: 160px 0 180px;
  text-align: center;
  background: var(--bg-3);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.bigcta .eyebrow { color: oklch(0.65 0.02 60); justify-content: center; }
.bigcta h2 {
  font-size: clamp(48px, 8vw, 140px);
  letter-spacing: -0.025em;
  margin: 40px auto 30px;
  max-width: 16ch;
}
.bigcta h2 em { color: oklch(0.78 0.16 50); }
.bigcta p {
  color: oklch(0.78 0.02 60);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 48ch;
  margin: 0 auto 50px;
}
.bigcta .btn-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bigcta .btn-primary { background: var(--bg); color: var(--ink); }
.bigcta .btn-primary:hover { background: var(--accent); color: var(--bg); }
.bigcta .btn-ghost { color: var(--bg); border-color: oklch(0.34 0.02 50); }
.bigcta .btn-ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.bigcta-ring {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid oklch(0.34 0.02 50);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.6;
}
.bigcta-ring.r2 { width: 1200px; height: 1200px; opacity: 0.4; }
.bigcta-ring.r3 { width: 1600px; height: 1600px; opacity: 0.2; }

/* ----- FOOTER ----- */
.footer {
  background: var(--bg-3);
  color: var(--bg);
  padding: 100px 0 40px;
  border-top: 1px solid oklch(0.32 0.02 50);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.footer .brand { color: var(--bg); }
.footer .lede { color: oklch(0.78 0.02 60); font-size: 14px; max-width: 38ch; margin-top: 16px; }

.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.62 0.02 60);
  margin: 12px 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a {
  color: oklch(0.86 0.02 60);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--bg); }
.footer-col .arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.footer-col a:hover .arrow { transform: translate(2px, -2px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  border-top: 1px solid oklch(0.32 0.02 50);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.62 0.02 60);
  flex-wrap: wrap; gap: 16px;
}

/* huge type signature */
.footer-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin: 80px 0 40px;
  white-space: nowrap;
  overflow: hidden;
}
.footer-mark .dot { color: var(--accent); }

/* WhatsApp floating */
.wa-float {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: oklch(0.62 0.18 145);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), 0 0 0 6px rgba(37,211,102,0.18);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.24), 0 0 0 10px rgba(37,211,102,0.22);
}

/* Cursor accent halo (subtle) */
.cursor-halo {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 18%, transparent), transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out);
  mix-blend-mode: multiply;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-halo { display: block; }
}
