/* ==========================================================================
   Kaithyn Viero — Psicóloga Clínica
   Design system + estilos globais
   ========================================================================== */

:root {
  /* Marca — extraído das logos oficiais */
  --teal-950: #0b262b;
  --teal-900: #143d43;   /* cor primária da marca */
  --teal-800: #1a4a51;
  --teal-700: #235e66;
  --teal-600: #327880;
  --teal-100: #e3edee;

  --pink-500: #efd6eb;   /* cor secundária da marca */
  --pink-600: #e3bcdc;
  --pink-700: #cf95c6;
  --pink-100: #faf1f8;
  --pink-ink: #a8478f;   /* variante escura da marca, usada em texto (contraste AA) */

  --cream: #f3f3f1;      /* fundo da marca */
  --cream-dark: #e9e7e2;
  --white: #ffffff;

  --ink: #1c2e30;
  --muted: #5c7377;
  --muted-soft: #44585b;

  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --container: 1200px;
  --container-narrow: 780px;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 61, 67, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 61, 67, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 61, 67, 0.16);
  --shadow-pink: 0 16px 40px rgba(207, 149, 198, 0.30);

  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --duration: 0.6s;

  --header-h: 84px;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
button, input, textarea { color: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--teal-900);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

::selection { background: var(--pink-500); color: var(--teal-900); }

:focus-visible {
  outline: 2px solid var(--teal-700);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section[id] { scroll-margin-top: var(--header-h); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--teal-900);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Section spacing / eyebrows ---------- */
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section-alt { background: var(--white); }
.section-teal {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-950));
  color: var(--pink-100);
}
.section-teal h2, .section-teal h3 { color: var(--white); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-ink);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--pink-700);
  display: inline-block;
}
.section-teal .eyebrow { color: var(--pink-500); }
.section-teal .eyebrow::before { background: var(--pink-500); }

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-teal .section-head p { color: rgba(255,255,255,0.72); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].is-visible { transform: scale(1); }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="right"].is-visible { transform: translateX(0); }

/* stagger helper */
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--teal-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--teal-800); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  background: transparent;
  color: var(--teal-900);
  border-color: rgba(20, 61, 67, 0.28);
}
.btn-ghost:hover { border-color: var(--teal-900); background: rgba(20,61,67,0.05); transform: translateY(-3px); }

.btn-pink {
  background: var(--pink-500);
  color: var(--teal-900);
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover { background: var(--pink-600); transform: translateY(-3px); }

.btn-light {
  background: var(--white);
  color: var(--teal-900);
}
.btn-light:hover { background: var(--pink-500); transform: translateY(-3px); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-800);
  border-bottom: 1px solid rgba(20,61,67,0.3);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease), border-color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 13px; color: var(--pink-ink); border-color: var(--pink-ink); }

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  width: 64px;
  height: 64px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink-600), var(--teal-700));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(243, 243, 241, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal-900);
}
.brand img { width: 40px; height: 40px; transition: transform .4s var(--ease); }
.brand:hover img { transform: rotate(-6deg) scale(1.05); }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-ink);
  font-weight: 600;
  margin-top: 3px;
}

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--teal-800);
  border-radius: var(--radius-full);
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--pink-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-desktop a:hover { color: var(--teal-900); background: rgba(20,61,67,0.05); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--teal-900); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--teal-900);
  border: none;
  position: relative;
  flex: none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), top .35s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { content: ""; top: -7px; }
.nav-toggle span::after { content: ""; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--cream);
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.nav-mobile a {
  padding: 16px 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-900);
  border-bottom: 1px solid rgba(20,61,67,0.08);
}
.nav-mobile .btn { margin-top: 20px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 60px;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-bg .blob-1 {
  width: 560px; height: 560px;
  top: -160px; right: -140px;
  background: radial-gradient(circle at 30% 30%, var(--pink-500), transparent 70%);
  animation: float-slow 16s ease-in-out infinite;
}
.hero-bg .blob-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle at 60% 60%, var(--teal-100), transparent 70%);
  animation: float-slow 20s ease-in-out infinite reverse;
}
.hero-bg .grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,61,67,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}
@keyframes float-slow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-24px, 28px) scale(1.06); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: var(--teal-900);
  margin-bottom: 24px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--pink-ink);
  position: relative;
}
.hero-copy .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--teal-900);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.82rem;
  color: var(--muted-soft);
  letter-spacing: 0.02em;
}

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--teal-900), var(--teal-700));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 15%, rgba(239,214,235,0.35), transparent 55%);
}
.hero-visual-frame img { width: 56%; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25)); position: relative; z-index: 1; }

.hero-visual-frame .ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
}
.hero-visual-frame .ring-1 { width: 120%; height: 120%; animation: spin-slow 40s linear infinite; }
.hero-visual-frame .ring-2 { width: 92%; height: 92%; border-style: dashed; animation: spin-slow 60s linear infinite reverse; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-badge-float {
  position: absolute;
  bottom: -26px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 6s ease-in-out infinite;
  max-width: 230px;
}
.hero-badge-float .dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink-500);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hero-badge-float .dot svg { width: 20px; height: 20px; color: var(--teal-900); }
.hero-badge-float strong { display:block; font-size: 0.85rem; color: var(--teal-900); }
.hero-badge-float span { font-size: 0.74rem; color: var(--muted); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-badge-float.top {
  bottom: auto; left: auto;
  top: 12%; right: -18px;
  animation-delay: 1.4s;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
  z-index: 1;
}
.scroll-cue .line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--teal-700), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
  background: var(--pink-700);
  animation: scroll-cue-move 2.2s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% { top: -10px; }
  60% { top: 34px; }
  100% { top: 34px; opacity: 0; }
}

/* ==========================================================================
   Intro / Welcome
   ========================================================================== */
.intro { text-align: center; }
.intro .container { max-width: var(--container-narrow); }
.intro h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 22px; }
.intro p { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; }
.intro p:last-of-type { margin-bottom: 0; }

/* ==========================================================================
   About
   ========================================================================== */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-portrait { position: relative; }
.portrait-frame {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
  aspect-ratio: 1 / 1.08;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--pink-500), var(--pink-100) 60%, var(--cream));
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(20,61,67,0.18);
  border-radius: calc(var(--radius-lg) - 10px);
}
.portrait-monogram {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 5.2rem);
  color: var(--teal-900);
  position: relative;
}
.portrait-monogram::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -14px;
  width: 46px; height: 2px;
  background: var(--pink-700);
  transform: translateX(-50%);
}
.portrait-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
}
.portrait-tag {
  position: absolute;
  top: -18px; right: 4%;
  background: var(--teal-900);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-md);
  animation: bob 7s ease-in-out infinite;
}

.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 20px; }
.about-copy > p { color: var(--muted); margin-bottom: 16px; font-size: 1.03rem; }

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.mini-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(20,61,67,0.06);
}
.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mini-card .icon-badge { margin-bottom: 14px; }
.mini-card strong { display: block; color: var(--teal-900); font-size: 0.98rem; margin-bottom: 6px; }
.mini-card span { font-size: 0.84rem; color: var(--muted); }

.icon-badge {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--pink-500);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.icon-badge svg { width: 22px; height: 22px; color: var(--teal-900); }
.icon-badge.alt { background: var(--teal-100); }

/* Formação list */
.credentials {
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,61,67,0.06);
}
.credentials h3 { font-size: 1.15rem; margin-bottom: 16px; }
.credentials ul { display: grid; gap: 12px; }
.credentials li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}
.credentials li svg {
  width: 18px; height: 18px;
  color: var(--pink-700);
  margin-top: 3px;
  flex: none;
}

/* ==========================================================================
   Approach (Minha Abordagem)
   ========================================================================== */
.approach .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.approach-copy h2 { margin-bottom: 18px; }
.approach-copy p { color: rgba(255,255,255,0.78); margin-bottom: 16px; font-size: 1.02rem; }

.checklist { display: grid; gap: 14px; margin-top: 30px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.checklist li:hover { background: rgba(255,255,255,0.11); transform: translateX(6px); }
.checklist li .mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pink-500);
  color: var(--teal-900);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.checklist li .mark svg { width: 15px; height: 15px; }

.approach-visual { position: relative; display: flex; align-items: center; }
.approach-stats {
  display: grid;
  gap: 18px;
  width: 100%;
}
.approach-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 26px;
  border-radius: var(--radius-md);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.approach-stat:hover { background: rgba(255,255,255,0.11); transform: translateX(6px); }
.approach-stat .icon-badge { background: rgba(239,214,235,0.16); width: 52px; height: 52px; border-radius: 15px; }
.approach-stat .icon-badge svg { color: var(--pink-500); width: 24px; height: 24px; }
.approach-stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.approach-stat .num-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.62); margin-top: 6px; }

/* ==========================================================================
   Services / Especialidades
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,61,67,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color .45s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--pink-100), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pink-600); }
.service-card:hover::before { opacity: 1; }
.service-card .icon-badge { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 22px; }
.service-card .icon-badge svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; min-height: 66px; }
.service-card .link-arrow { font-size: 0.88rem; position: relative; z-index: 1; }

/* ==========================================================================
   Organizations (Empresas)
   ========================================================================== */
.orgs { position: relative; }
.orgs .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.orgs-copy p { color: var(--muted); margin-bottom: 20px; font-size: 1.02rem; }
.orgs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.orgs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(20,61,67,0.08);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.orgs-list li svg { width: 16px; height: 16px; color: var(--pink-700); flex: none; }

.orgs-visual {
  background: var(--teal-900);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.orgs-visual::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(239,214,235,0.25), transparent 70%);
  top: -80px; right: -60px;
}
.orgs-visual h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 14px; }
.orgs-visual p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.orgs-stats { display: grid; gap: 18px; position: relative; z-index: 1; }
.orgs-stats .row { display: flex; align-items: center; gap: 14px; }
.orgs-stats .row .icon-badge { background: rgba(239,214,235,0.16); }
.orgs-stats .row .icon-badge svg { color: var(--pink-500); }
.orgs-stats .row strong { display:block; font-size: 0.98rem; }
.orgs-stats .row span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   Process timeline (Como funciona)
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(20,61,67,0.25) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step .num {
  width: 68px; height: 68px;
  margin-inline: auto 22px auto;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(20,61,67,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-900);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.process-step:hover .num { background: var(--teal-900); color: var(--white); transform: scale(1.08); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; margin-inline: auto; }

/* ==========================================================================
   Modalities (Online/Presencial)
   ========================================================================== */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.modality-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,61,67,0.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.modality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.modality-card .icon-badge { width: 58px; height: 58px; border-radius: 18px; margin-bottom: 22px; }
.modality-card .icon-badge svg { width: 28px; height: 28px; }
.modality-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.modality-card p { color: var(--muted); margin-bottom: 20px; }
.modality-card ul { display: grid; gap: 10px; }
.modality-card ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--ink);
}
.modality-card ul li svg { width: 15px; height: 15px; color: var(--pink-700); flex: none; }

/* ==========================================================================
   Differentials grid
   ========================================================================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.diff-card {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(20,61,67,0.06);
  transition: transform .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.diff-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-md); }
.diff-card .icon-badge { margin-inline: auto; margin-bottom: 18px; width: 56px; height: 56px; border-radius: 16px; }
.diff-card .icon-badge svg { width: 26px; height: 26px; }
.diff-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.diff-card p { font-size: 0.86rem; color: var(--muted); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-shell { position: relative; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 4px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20,61,67,0.06);
}
.testimonial-card .quote-mark {
  width: 46px; height: 46px;
  margin-inline: auto;
  margin-bottom: 22px;
  color: var(--pink-600);
}
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--teal-900);
  margin-bottom: 22px;
  line-height: 1.5;
}
.testimonial-card .who { color: var(--muted); font-size: 0.9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testimonial-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(20,61,67,0.18);
  border: none;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.testimonial-dots button.is-active { background: var(--teal-900); transform: scale(1.3); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list { max-width: var(--container-narrow); margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(20,61,67,0.08);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.faq-item.is-open { box-shadow: var(--shadow-sm); border-color: rgba(20,61,67,0.16); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-900);
}
.faq-question .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink-500);
  flex: none;
  position: relative;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--teal-900);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq-item.is-open .plus { transform: rotate(90deg); background: var(--teal-900); }
.faq-item.is-open .plus::before { background: var(--white); }
.faq-item.is-open .plus::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer p { padding: 0 26px 24px; color: var(--muted); max-width: 62ch; }

/* ==========================================================================
   CTA Final
   ========================================================================== */
.cta-final { text-align: center; position: relative; overflow: hidden; }
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(239,214,235,0.18), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(239,214,235,0.12), transparent 55%);
}
.cta-final .container { position: relative; z-index: 1; max-width: 760px; }
.cta-final .icon-badge { margin-inline: auto; width: 64px; height: 64px; border-radius: 20px; background: rgba(239,214,235,0.16); margin-bottom: 26px; }
.cta-final .icon-badge svg { width: 30px; height: 30px; color: var(--pink-500); }
.cta-final h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--white); margin-bottom: 20px; }
.cta-final p { color: rgba(255,255,255,0.75); font-size: 1.08rem; margin-bottom: 36px; }
.cta-final .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-methods { display: grid; gap: 16px; margin-top: 30px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(20,61,67,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-method:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-method strong { display: block; font-size: 0.95rem; color: var(--teal-900); }
.contact-method span { font-size: 0.85rem; color: var(--muted); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20,61,67,0.06);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20,61,67,0.16);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 4px rgba(20,61,67,0.08);
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--muted-soft); margin-top: 14px; text-align: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--teal-950);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(60px, 8vw, 90px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { width: 46px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 30ch; margin-top: 14px; }
.footer-crp { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.92rem; transition: color .3s ease, padding .3s ease; }
.footer-col a:hover { color: var(--pink-500); padding-left: 4px; }

.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--pink-500); color: var(--teal-900); border-color: var(--pink-500); transform: translateY(-4px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-block: 26px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
}
.footer-bottom a:hover { color: var(--pink-500); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, background .3s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-800); }
.back-to-top svg { width: 20px; height: 20px; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.whatsapp-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin-inline: auto; }
  .about .container,
  .approach .container,
  .orgs .container,
  .contact .container { grid-template-columns: 1fr; }
  .approach-visual { order: -1; }
  .orgs-visual { order: -1; }
}

@media (max-width: 860px) {
  .nav-desktop, .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .process-steps { grid-template-columns: 1fr; gap: 44px; }
  .process-steps::before { display: none; }
  .modalities-grid { grid-template-columns: 1fr; }
  .orgs-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-badge-float { display: none; }
  .hero-stats { gap: 24px; }
  .section { padding-block: 64px; }
  .back-to-top { width: 46px; height: 46px; right: 16px; bottom: 16px; }
  .whatsapp-float { width: 50px; height: 50px; left: 16px; bottom: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
