/* ============================================================
   DUNA — Componentes e seções
   ============================================================ */

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink-vivid); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--pink-vivid);
  transition: width .25s; border-radius: 2px;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 92px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  line-height: 0.98;
}
.hero h1 .hl { color: var(--pink-vivid); position: relative; white-space: nowrap; }
.hero .sub {
  margin-top: 26px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--charcoal-soft);
  max-width: 540px;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-trust .ti { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.hero-trust .ti b { color: var(--charcoal); font-weight: 800; }
.hero-trust .ti .dt { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-vivid); }

/* Hero visual — carrossel (uma imagem por vez, troca sozinha) */
.hero-visual { position: relative; }
.hv-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--pink-soft);
}
.hv-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
  will-change: opacity, transform;
}
.hv-slide.is-active { opacity: 1; transform: scale(1); }
.hv-dots {
  display: flex; justify-content: center; gap: 9px;
  margin-top: 20px;
}
.hv-dots .dot-i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(52,52,52,0.18); border: none; padding: 0; cursor: pointer;
  transition: width .35s ease, background .35s ease;
}
.hv-dots .dot-i.is-active { width: 26px; border-radius: 999px; background: var(--pink-vivid); }

/* faixa diagonal de "marca" decorativa */
.hero-blob { position: absolute; z-index: 0; }
.hero-blob.b1 { width: 320px; height: 320px; background: var(--pink-soft); border-radius: 50%; filter: blur(10px); opacity: .5; top: -80px; right: -60px; }

/* Fundo com detalhe rosa desfocado (reutilizável) */
.has-blob { overflow: hidden; }
.sec-blob { position: absolute; z-index: 0; pointer-events: none; background: var(--pink-soft); border-radius: 50%; filter: blur(80px); opacity: .55; }
.has-blob .wrap { position: relative; z-index: 1; }
.sec-blob.sb-1 { width: 460px; height: 460px; top: -120px; right: -120px; }
.sec-blob.sb-2 { width: 520px; height: 520px; bottom: -160px; left: -160px; opacity: .5; }

/* ---------- Marquee de prova social ---------- */
.proof-strip { background: var(--charcoal); color: #fff; padding-block: 22px; overflow: hidden; }
.marquee { display: flex; gap: 56px; white-space: nowrap; animation: scrollx 26s linear infinite; width: max-content; }
.marquee:hover { animation-play-state: paused; }
.marquee .mi { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; opacity: .9; }
.marquee .mi .star { color: var(--pink-vivid); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Serviços ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svc::after {
  content: ""; position: absolute; inset: auto -40% -60% auto;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--pink-soft); opacity: 0; transition: opacity .35s; filter: blur(8px);
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::after { opacity: .4; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  position: relative; z-index: 1;
}
.svc-ico svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.4rem; position: relative; z-index: 1; }
.svc p { margin-top: 12px; color: var(--muted); font-size: 1rem; position: relative; z-index: 1; flex: 1; }
.svc .svc-link {
  margin-top: 20px; font-weight: 700; color: var(--charcoal); font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 1;
}
.svc .svc-link svg { transition: transform .25s; }
.svc:hover .svc-link { color: var(--pink-deep); }
.svc:hover .svc-link svg { transform: translateX(4px); }

.ico-pink { background: var(--pink-soft); color: var(--pink-deep); }
.ico-dark { background: var(--charcoal); color: #fff; }
.ico-yellow { background: var(--acc-yellow); color: var(--charcoal); }
.ico-blue { background: color-mix(in srgb, var(--acc-blue) 22%, white); color: var(--acc-blue); }
.ico-green { background: color-mix(in srgb, var(--acc-green) 26%, white); color: #2f7e3c; }
.ico-coral { background: color-mix(in srgb, var(--acc-coral) 22%, white); color: var(--acc-coral); }

/* ---------- Seção clara reutilizável ---------- */
.audience { background: var(--bg-warm); }

/* ---------- Diferenciais ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.diff {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.diff .num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--pink-vivid); line-height: 1; }
.diff h4 { margin-top: 14px; font-size: 1.15rem; }
.diff p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Como funciona (processo) ---------- */
.process { }
.process.dark { background: var(--charcoal); color: #fff; }
.process.dark h2, .process.dark h3 { color: #fff; }
.process.dark .section-head .lead { color: rgba(255,255,255,0.72); }
.process.dark .eyebrow { color: var(--pink-soft); }
.process.dark .eyebrow::before { background: var(--pink-soft); }
.steps { display: grid; gap: 0; counter-reset: step; }
.steps.cols { grid-template-columns: repeat(3,1fr); gap: 22px; }
.step {
  position: relative; padding: 28px 0 28px 78px; counter-increment: step;
  border-top: 1px solid var(--line);
}
.process.dark .step { border-color: rgba(255,255,255,0.12); }
.step:last-child { border-bottom: 1px solid var(--line); }
.process.dark .step:last-child { border-color: rgba(255,255,255,0.12); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--pink-vivid); width: 56px;
}
.step h4 { font-size: 1.3rem; }
.step p { margin-top: 8px; color: var(--muted); max-width: 640px; }
.process.dark .step p { color: rgba(255,255,255,0.7); }
/* card variant for cols */
.steps.cols .step {
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius);
  padding: 28px 26px; background: rgba(255,255,255,0.04);
}
.steps.cols .step::before { position: static; display: block; margin-bottom: 14px; }
/* Foto encaixada na grade da identidade (célula vazia) */
.id-step-photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--pink-soft);
  min-height: 220px;
}
.id-step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px) {
  .id-step-photo { aspect-ratio: 4/5; }
}

/* Identidade — título + imagem lado a lado */
.id-intro { display: grid; grid-template-columns: 1fr auto; gap: clamp(28px,5vw,64px); align-items: center; margin-bottom: clamp(40px,6vw,64px); }
.id-photo { width: clamp(280px, 32vw, 380px); aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--pink-soft); }
.id-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .id-intro { grid-template-columns: 1fr; }
  .id-photo { width: 100%; max-width: 380px; }
}

/* ---------- Sobre Eduarda ---------- */
.ceo-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,72px); align-items: center; }
.ceo-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--pink-soft), var(--pink-vivid));
  box-shadow: var(--shadow); overflow: hidden;
}
.ceo-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ceo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px;
}
.ceo-badge .av { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); flex: none; }
.ceo-badge b { display: block; color: var(--charcoal); }
.ceo-badge span { font-size: 0.85rem; color: var(--muted); }
.ceo-body h2 { font-size: clamp(2rem,4.6vw,3.2rem); }
.ceo-body .lead { margin-top: 20px; color: var(--charcoal-soft); font-size: 1.12rem; }
.ceo-body .lead + .lead { margin-top: 16px; color: var(--muted); font-size: 1.02rem; }
.ceo-tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.ceo-tags .tag {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 16px; font-weight: 600; font-size: 0.9rem; color: var(--charcoal);
}
.ceo-team {
  margin-top: 30px; display: flex; align-items: center; gap: 18px;
  background: var(--bg-warm); border-radius: var(--radius); padding: 20px 24px; border: 1px solid var(--line);
}
.ceo-team .pill-num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--pink-vivid); line-height: 1; }
.ceo-team p { color: var(--muted); font-size: 0.98rem; }
.ceo-team p b { color: var(--charcoal); }

/* ---------- Depoimentos ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 28px; }
.tcard {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tcard p { color: var(--charcoal); font-size: 1.05rem; flex: 1; }
.tcard .who { margin: 0 0 18px; display: flex; align-items: center; gap: 14px; }
.tcard .who .av { width: 54px; height: 54px; border-radius: 50%; background: var(--pink-soft); flex: none; object-fit: cover; object-position: center top; }
.tcard .who b { display: block; color: var(--charcoal); }
.tcard .who span { font-size: 0.86rem; color: var(--muted); }
.tcard .stars { color: var(--pink-vivid); margin-bottom: 14px; letter-spacing: 2px; }

/* Depoimentos em fundo carvão */
.testi-dark { background: var(--charcoal); }
.testi-dark .section-head h2,
.testi-dark .section-head .eyebrow { color: #fff; }
.testi-dark .section-head .eyebrow { color: var(--pink-soft); }
.testi-dark .section-head .eyebrow::before { background: var(--pink-soft); }
.testi-dark .section-head .lead { color: rgba(255,255,255,0.72); }

.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 860px; margin-inline: auto; }
.vcard {
  position: relative; aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), #1e1e1e); cursor: pointer;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.vcard .play {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px;
  background: rgba(255,255,255,0.95); border-radius: 50%; display: grid; place-items: center;
  transition: transform .3s, background .3s;
}
.vcard:hover .play { transform: scale(1.1); background: var(--pink-vivid); }
.vcard .play svg { width: 26px; height: 26px; color: var(--charcoal); transition: color .3s; margin-left: 3px; }
.vcard:hover .play svg { color: #fff; }
.vcard video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.vcard .play { z-index: 2; }
.vcard.playing .play { opacity: 0; pointer-events: none; }
.vcard.playing { cursor: default; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem,2.2vw,1.45rem);
  color: var(--charcoal);
}
.faq-q .ic {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--line); display: grid; place-items: center;
  transition: .3s; position: relative;
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: var(--charcoal); border-radius: 2px; transition: .3s;
}
.faq-q .ic::before { width: 14px; height: 2.5px; }
.faq-q .ic::after { width: 2.5px; height: 14px; }
.faq-item.open .faq-q .ic { background: var(--pink-vivid); border-color: var(--pink-vivid); }
.faq-item.open .faq-q .ic::before, .faq-item.open .faq-q .ic::after { background: #fff; }
.faq-item.open .faq-q .ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 4px 28px; color: var(--muted); font-size: 1.05rem; max-width: 720px; }

/* ---------- CTA final ---------- */
.cta-final { padding-block: clamp(40px,7vw,90px); }
.cta-dark { background: var(--charcoal); padding-block: clamp(64px,9vw,120px); }
.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--pink-vivid), var(--pink-deep));
  border-radius: var(--radius-lg);
  padding: clamp(48px,8vw,96px) clamp(28px,6vw,80px);
  text-align: center; color: #fff;
  box-shadow: var(--shadow-pink);
}
.cta-box h2 { color: #fff; font-size: clamp(2.2rem,6vw,4.2rem); }
.cta-box p { margin: 22px auto 0; max-width: 560px; font-size: clamp(1.1rem,2.2vw,1.35rem); color: rgba(255,255,255,0.92); }
.cta-box .hero-actions { justify-content: center; margin-top: 40px; }
.cta-box .btn-white { background: #fff; color: var(--pink-deep); }
.cta-box .btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3); }
.cta-box .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-box .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.cta-deco { position: absolute; pointer-events: none; }
.cta-deco.d-a { width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.12); top: -70px; left: -50px; }
.cta-deco.d-b { width: 160px; height: 160px; border-radius: 999px 0 999px 0; background: rgba(52,52,52,0.18); bottom: -50px; right: -30px; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #fff; padding-block: 64px 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer .logo { color: #fff; }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h2 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.62); padding: 6px 0; font-size: 0.96rem; transition: color .2s; }
.footer-col a:hover { color: var(--pink-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; transition: .25s;
}
.footer-social a:hover { background: var(--pink-vivid); border-color: var(--pink-vivid); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 78px 0 auto 0; z-index: 99;
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter) 32px; display: none; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-weight: 700; font-size: 1.2rem; color: var(--charcoal); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 20px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .diff-grid { grid-template-columns: repeat(2,1fr); }
  .ceo-grid { grid-template-columns: 1fr; }
  .steps.cols { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .services-grid, .diff-grid { grid-template-columns: 1fr; }
  .video-grid { gap: 10px; }
  .footer-top { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}
