/* ============================================
   Dra. Ana Carolina Queiroz — Pediatra
   Editorial · Magazine · Vibrante
   ============================================ */

:root {
  /* --- Cores --- */
  --navy-deep: #1A2472;
  --navy-mid: #1E3A8A;
  --navy-soft: #2B3FAA;
  --blue-vibrant: #2563EB;
  --blue-soft: #60A5FA;
  --blue-pale: #DBEAFE;
  --pink-hot: #EC4899;
  --pink-light: #F9A8D4;
  --pink-pale: #FCE7F3;
  --yellow-gold: #FBBF24;
  --yellow-pale: #FEF3C7;
  --teal: #22D3EE;
  --teal-light: #A5F3FC;
  --teal-pale: #CFFAFE;

  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --cream: #FFFCF5;
  --gray-light: #E2E8F0;
  --gray-mid: #94A3B8;
  --gray-text: #475569;
  --text: #1E293B;
  --text-muted: #64748B;

  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* --- Tipografia --- */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* --- Raios --- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* --- Sombras --- */
  --shadow-xs: 0 2px 8px rgba(26, 36, 114, 0.06);
  --shadow-sm: 0 4px 16px rgba(26, 36, 114, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 36, 114, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 36, 114, 0.2);
  --shadow-color: 0 12px 28px rgba(37, 99, 235, 0.3);

  --container: 1280px;
  --transition: 360ms cubic-bezier(0.22, 1, 0.36, 1);

  --grad-brand: linear-gradient(135deg, #1A2472 0%, #2B3FAA 50%, #1E3A8A 100%);
  --grad-accent: linear-gradient(to right, #2563EB, #EC4899);
  --grad-rainbow: linear-gradient(to right, #2563EB, #22D3EE, #FBBF24, #EC4899);
  --grad-warm: linear-gradient(135deg, #FBBF24 0%, #EC4899 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--pink-hot);
  color: var(--white);
}

/* ---------- A11y ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--blue-vibrant);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout base ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section__header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}
.section__title em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-vibrant);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--blue-pale);
  border-radius: var(--radius-pill);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.eyebrow--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- Blobs ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.blob--pink {
  width: 320px; height: 320px;
  background: var(--pink-hot);
  opacity: 0.12;
  top: -80px; right: -80px;
}
.blob--yellow {
  width: 220px; height: 220px;
  background: var(--yellow-gold);
  opacity: 0.18;
  bottom: 40px; left: -60px;
}
.blob--teal {
  width: 160px; height: 160px;
  background: var(--teal);
  opacity: 0.2;
  top: 30%; right: 18%;
}
.blob--blue {
  width: 280px; height: 280px;
  background: var(--blue-vibrant);
  opacity: 0.08;
  bottom: -100px; right: 30%;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 255, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-xs);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-deep);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  transition: transform var(--transition);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: -8px;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.brand__credentials {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--pink-hot);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1px;
  align-self: center;
  transform: translateX(-5px);
}
.brand__role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--pink-hot);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav ul { display: flex; gap: 4px; align-items: center; }
.nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
}
.nav a:hover { color: var(--blue-vibrant); }
.nav a.is-active { color: var(--blue-vibrant); }
.nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink-hot);
}
.nav-cta {
  background: var(--navy-deep) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-color);
  transition: transform var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-color);
}
.btn--primary:hover {
  background: var(--blue-vibrant);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.4);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  font-size: 1rem;
  padding: 20px 40px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 12px 0;
  position: relative;
  transition: color var(--transition), gap var(--transition);
}
.btn-link svg { transition: transform var(--transition); }
.btn-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform var(--transition);
}
.btn-link:hover { color: var(--pink-hot); gap: 14px; }
.btn-link:hover::after {
  transform-origin: left center;
  transform: scaleX(1);
}
.btn-link:hover svg { transform: translateX(4px); }
.btn-link--light { color: rgba(255, 255, 255, 0.9); }
.btn-link--light:hover { color: var(--yellow-gold); }

/* ============================================
   HERO — Magazine cover
   ============================================ */
.hero {
  position: relative;
  padding: 40px 0 120px;
  overflow: hidden;
  background: var(--off-white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg .blob--pink { top: -120px; right: -100px; opacity: 0.18; }
.hero__bg .blob--yellow { bottom: 5%; left: -100px; opacity: 0.22; width: 280px; height: 280px; }
.hero__bg .blob--teal { top: 40%; right: 8%; width: 140px; height: 140px; opacity: 0.3; }

.hero__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.hero__rail-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-deep);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.55;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-left: 40px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__kicker-num {
  color: var(--pink-hot);
  font-size: 1rem;
  font-weight: 700;
}
.hero__kicker-divider {
  width: 32px;
  height: 1px;
  background: var(--navy-deep);
  opacity: 0.3;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  margin-bottom: 28px;
}
.hero__title-script {
  display: block;
  font-style: italic;
  font-weight: 500;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__title-bold {
  display: block;
  font-weight: 800;
  position: relative;
}
.hero__title-bold::after {
  content: '';
  position: absolute;
  bottom: 0.12em;
  left: 0;
  width: 1.2em;
  height: 0.18em;
  background: var(--yellow-gold);
  z-index: -1;
  opacity: 0.7;
  transform: skewX(-12deg);
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-text);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
  max-width: 540px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-deep);
  line-height: 1;
}
.hero__meta-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__meta-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-light);
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 0;
  margin-top: -80px;
}
.hero__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--blue-pale) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatLg 12s ease-in-out infinite;
  pointer-events: none;
}
.hero__illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(37, 99, 235, 0.25));
  animation: floatSm 6s ease-in-out infinite;
}
.hero__sticker {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  pointer-events: none;
  z-index: 3;
}
.hero__sticker--1 {
  top: 8%;
  right: 6%;
  font-size: 2.5rem;
  color: var(--yellow-gold);
  animation: spin 8s linear infinite;
}
.hero__sticker--2 {
  bottom: 12%;
  left: 4%;
  font-size: 2rem;
  color: var(--pink-hot);
  animation: floatSm 4s ease-in-out infinite;
}
.hero__sticker--3 {
  top: 50%;
  right: -2%;
  font-size: 1.5rem;
  color: var(--teal);
  animation: floatSm 5s ease-in-out infinite reverse;
}

@keyframes floatLg {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -16px) scale(1.05); }
}
@keyframes floatSm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   SOBRE — Editorial article
   ============================================ */
.section--about {
  background: var(--white);
  padding: clamp(80px, 12vw, 160px) 0;
}
.about__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.about__side {
  position: sticky;
  top: 120px;
}
.about__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 24px;
}
.about__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.about__name em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about__line {
  width: 80px;
  height: 3px;
  background: var(--grad-warm);
  border-radius: 2px;
  margin-bottom: 24px;
}
.about__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--navy-deep);
  font-weight: 500;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--pink-hot);
}

.about__body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-text);
  margin-bottom: 1.4em;
}
.about__body strong { color: var(--navy-deep); font-weight: 600; }
.about__intro {
  font-size: 1.2rem !important;
  color: var(--navy-deep) !important;
  font-weight: 400 !important;
}
.dropcap {
  font-family: var(--font-display);
  float: left;
  font-size: 5.5rem;
  line-height: 0.85;
  font-weight: 800;
  font-style: italic;
  margin: 4px 14px -4px 0;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   FORMAÇÃO — Vertical timeline
   ============================================ */
.section--formacao {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.section--formacao::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--pink-pale);
  opacity: 0.55;
  filter: blur(30px);
}
.section--formacao .eyebrow { color: var(--pink-hot); background: var(--pink-pale); }

.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 64px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 22px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-vibrant), var(--pink-hot), var(--yellow-gold));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  padding: 28px 0 40px;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -53px;
  top: 32px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid var(--off-white);
  box-shadow: 0 0 0 2px;
  z-index: 1;
}
.timeline__marker--blue { background: var(--blue-vibrant); color: var(--blue-vibrant); }
.timeline__marker--pink { background: var(--pink-hot); color: var(--pink-hot); }
.timeline__marker--yellow { background: var(--yellow-gold); color: var(--yellow-gold); }

.timeline__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-light);
}

.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.timeline__place {
  font-size: 1rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.timeline__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline__list li {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--gray-text);
  padding-left: 20px;
  position: relative;
}
.timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--pink-hot);
}
.timeline__list strong { color: var(--navy-deep); font-weight: 600; }

/* ============================================
   ABORDAGEM — Full-bleed manifesto
   ============================================ */
.section--abordagem {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 0;
}
.manifesto__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.manifesto__decor .blob--pink {
  top: -100px;
  right: -50px;
  width: 380px;
  height: 380px;
  opacity: 0.22;
}
.manifesto__decor .blob--yellow {
  bottom: -80px;
  left: -50px;
  width: 280px;
  height: 280px;
  opacity: 0.18;
}
.manifesto__decor .blob--teal {
  top: 40%;
  right: 8%;
  width: 200px;
  height: 200px;
  opacity: 0.25;
}

.manifesto {
  position: relative;
  max-width: 1000px;
  z-index: 1;
  text-align: center;
}
.manifesto__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.manifesto__label::before,
.manifesto__label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--pink-light);
}
.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 48px;
}
.manifesto__quote em {
  font-style: italic;
  color: var(--yellow-gold);
}
.manifesto__hl {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-style: italic;
  white-space: nowrap;
}
.manifesto__hl::before {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 0.12em;
  height: 0.5em;
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}
.manifesto__hl--pink::before { background: rgba(236, 72, 153, 0.4); }
.manifesto__hl--yellow::before { background: rgba(251, 191, 36, 0.35); }
.manifesto__hl--teal::before { background: rgba(34, 211, 238, 0.35); }

.manifesto__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--pink-light);
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* ============================================
   ÁREAS — Interactive tabs
   ============================================ */
.section--areas {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.areas__deco {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-pale) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.areas-tabs {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

.areas-tabs__list {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--gray-light);
}

.areas-tab {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-align: left;
  padding: 24px 28px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: padding var(--transition), color var(--transition), background var(--transition);
  color: var(--text-muted);
}
.areas-tab:first-child { border-top: 1px solid var(--gray-light); }

.areas-tab__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.areas-tab__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color var(--transition);
}

.areas-tab__indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(37, 99, 235, 0.15);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--transition);
  overflow: hidden;
}
.areas-tab__indicator::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-accent);
  transform-origin: top center;
  transform: scaleY(0);
}
.areas-tab.is-active .areas-tab__indicator::after {
  animation: areaProgress 5000ms linear forwards;
}
.areas-tabs.is-paused .areas-tab.is-active .areas-tab__indicator::after,
.areas-tabs:hover .areas-tab.is-active .areas-tab__indicator::after {
  animation-play-state: paused;
}
@keyframes areaProgress {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.areas-tab:hover {
  background: var(--off-white);
  color: var(--navy-deep);
}
.areas-tab:hover .areas-tab__num { color: var(--pink-hot); }

.areas-tab.is-active {
  background: var(--off-white);
  padding-left: 38px;
}
.areas-tab.is-active .areas-tab__label {
  color: var(--navy-deep);
  font-style: italic;
}
.areas-tab.is-active .areas-tab__num { color: var(--pink-hot); }
.areas-tab.is-active .areas-tab__indicator { transform: scaleY(1); }

.areas-tabs__panel {
  position: relative;
  min-height: 400px;
  padding: clamp(32px, 4vw, 56px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.areas-tabs__panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--pink-pale);
  opacity: 0.7;
  z-index: 0;
}
.areas-tabs__panel::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--yellow-pale);
  opacity: 0.6;
  z-index: 0;
}

.area-detail {
  display: none;
  opacity: 0;
  animation: fadeIn 500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  z-index: 1;
}
.area-detail.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.area-detail__art {
  width: 100px;
  height: 100px;
  margin-bottom: 32px;
  filter: drop-shadow(0 10px 24px rgba(26, 36, 114, 0.2));
}
.area-detail__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.area-detail__text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 540px;
}

.areas-tabs__dots { display: none; }

@media (max-width: 860px) {
  .areas-tabs { grid-template-columns: 1fr; gap: 0; }
  .areas-tabs__list { display: none; }
  .areas-tabs__panel {
    min-height: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding-top: 28px;
  }
  .areas__deco { display: none; }
  .area-detail__art { width: 84px; height: 84px; margin-bottom: 24px; }

  .areas-tabs__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--off-white);
    padding: 20px 24px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .areas-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 0;
    padding: 0;
    transition: background var(--transition), width var(--transition);
  }
  .areas-dot.is-active {
    background: var(--pink-hot);
    width: 28px;
    border-radius: 4px;
  }
}

/* ============================================
   DIFERENCIAIS — Editorial numbered list
   ============================================ */
.section--diferenciais {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.section--diferenciais::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--yellow-pale);
  opacity: 0.6;
  filter: blur(40px);
}
.section--diferenciais .eyebrow { color: #B45309; background: var(--yellow-pale); }

.diff-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.diff-pill {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 36px;
  border-radius: 40px;
  max-width: 360px;
  flex: 1 1 280px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.diff-pill:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: var(--shadow-lg);
}

.diff-pill--1 { background: var(--navy-deep); }
.diff-pill--2 { background: var(--pink-hot); }
.diff-pill--3 { background: var(--yellow-gold); }
.diff-pill--4 { background: var(--blue-vibrant); }
.diff-pill--5 { background: var(--teal); }
.diff-pill--6 { background: var(--pink-pale); border: 2px solid var(--pink-light); }

.diff-pill__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.diff-pill--1 .diff-pill__title { color: var(--white); }
.diff-pill--2 .diff-pill__title { color: var(--white); }
.diff-pill--3 .diff-pill__title { color: var(--navy-deep); }
.diff-pill--4 .diff-pill__title { color: var(--white); }
.diff-pill--5 .diff-pill__title { color: var(--navy-deep); }
.diff-pill--6 .diff-pill__title { color: var(--pink-hot); }

.diff-pill__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.82;
}
.diff-pill--1 .diff-pill__desc { color: var(--blue-pale); }
.diff-pill--2 .diff-pill__desc { color: var(--white); }
.diff-pill--3 .diff-pill__desc { color: var(--navy-deep); }
.diff-pill--4 .diff-pill__desc { color: var(--blue-pale); }
.diff-pill--5 .diff-pill__desc { color: var(--navy-deep); }
.diff-pill--6 .diff-pill__desc { color: var(--pink-hot); }

/* ============================================
   DEPOIMENTOS — Quote wall (masonry)
   ============================================ */
.section--depoimentos {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.section--depoimentos::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--teal-pale);
  opacity: 0.6;
  filter: blur(40px);
}
.section--depoimentos .eyebrow { color: #0E7490; background: var(--teal-pale); }

.depo-slider {
  position: relative;
  z-index: 1;
}

.depo-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.depo-track {
  display: flex;
  gap: 20px;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}

/* Desktop: 4 cards visíveis */
.depo-slide {
  flex: 0 0 calc((100% - 3 * 20px) / 4);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--blue-vibrant);
  transition: box-shadow var(--transition);
}
.depo-slide:hover { box-shadow: var(--shadow-md); }

.depo-slide.quote-card--1 { border-top-color: var(--blue-vibrant); }
.depo-slide.quote-card--2 { border-top-color: var(--pink-hot); }
.depo-slide.quote-card--3 { border-top-color: var(--yellow-gold); }
.depo-slide.quote-card--4 { border-top-color: var(--teal); }
.depo-slide.quote-card--5 { border-top-color: var(--blue-vibrant); }
.depo-slide.quote-card--6 { border-top-color: var(--pink-hot); }

/* Mobile: 1 card por vez */
@media (max-width: 720px) {
  .depo-slide {
    flex: 0 0 100%;
    padding: 28px 22px;
  }
}

.depo-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.depo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
  flex-shrink: 0;
}
.depo-dot.is-active {
  background: var(--pink-hot);
  width: 28px;
  border-radius: 4px;
}
.depo-dot:not(.is-active):hover { background: var(--blue-vibrant); }

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  position: relative;
  border-top: 4px solid var(--blue-vibrant);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quote-card--1 { border-top-color: var(--blue-vibrant); background: var(--blue-pale); }
.quote-card--2 { border-top-color: var(--pink-hot); background: var(--pink-pale); transform: rotate(0.5deg); }
.quote-card--2:hover { transform: translateY(-6px) rotate(-0.2deg); }
.quote-card--3 { border-top-color: var(--yellow-gold); background: var(--yellow-pale); }
.quote-card--4 { border-top-color: var(--teal); background: var(--teal-pale); transform: rotate(-0.4deg); }
.quote-card--4:hover { transform: translateY(-6px) rotate(0.2deg); }
.quote-card--5 { border-top-color: var(--blue-vibrant); background: var(--off-white); }
.quote-card--6 { border-top-color: var(--pink-hot); background: var(--white); border: 1px solid var(--gray-light); transform: rotate(0.3deg); }

.quote-card::before {
  content: '"';
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(26, 36, 114, 0.12);
  pointer-events: none;
}

.quote-card__stars {
  color: var(--yellow-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.quote-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy-deep);
  position: relative;
  z-index: 1;
}

.quote-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(26, 36, 114, 0.12);
}
.quote-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-deep);
}
.quote-card__rel {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .quote-card { width: 300px; }
}
@media (max-width: 640px) {
  .quote-card { width: 280px; }
}

/* ============================================
   FAQ — Two-column editorial accordion
   ============================================ */
.section--faq {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.faq__side {
  position: sticky;
  top: 120px;
}
.faq__side .eyebrow { color: var(--blue-vibrant); background: var(--blue-pale); }
.faq__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.faq__title em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.faq__desc {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 360px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-light);
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  transition: padding var(--transition);
}
.faq-item[open] {
  padding-bottom: 4px;
}

.faq-item__question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover .faq-item__q { color: var(--pink-hot); }

.faq-item__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.faq-item[open] .faq-item__num { color: var(--pink-hot); }

.faq-item__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  color: var(--navy-deep);
  transition: color var(--transition);
  letter-spacing: -0.005em;
}
.faq-item[open] .faq-item__q { font-style: italic; }

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--navy-deep);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: background var(--transition), transform var(--transition);
}
.faq-item__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-item__icon {
  border-color: var(--pink-hot);
  background: var(--pink-hot);
  transform: rotate(180deg);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: var(--white); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item__answer {
  padding: 0 0 32px 56px;
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.75;
}
.faq-item__answer p { margin: 0; }

@media (max-width: 860px) {
  .faq__layout { grid-template-columns: 1fr; }
  .faq__side { position: static; }
  .faq-item__answer { padding-left: 36px; }
}

/* ============================================
   MISSÃO — Split-screen
   ============================================ */
.section--missao {
  padding: 0 !important;
  background: var(--off-white);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(440px, 60vh, 600px);
}
.split__panel {
  padding: clamp(48px, 7vw, 96px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.split__panel--light {
  background: var(--off-white);
}
.split__panel--dark {
  background: var(--grad-brand);
  color: var(--white);
}
.split__panel .eyebrow { background: var(--pink-pale); color: var(--pink-hot); margin-bottom: 32px; }
.split__panel--dark .eyebrow { background: rgba(255, 255, 255, 0.14); color: var(--white); }

.split__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  color: var(--navy-deep);
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.split__text em {
  font-style: italic;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split__panel--dark .split__text { color: var(--white); }
.split__panel--dark .split__text em {
  background: linear-gradient(to right, var(--yellow-gold), var(--pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split__rule {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin-top: 32px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.split__signature {
  margin-top: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(248, 250, 255, 0.2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--yellow-gold);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.split__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.split__deco--pink {
  width: 280px; height: 280px;
  background: var(--pink-pale);
  opacity: 0.7;
  top: -120px; right: -120px;
}
.split__deco--yellow {
  width: 180px; height: 180px;
  background: var(--yellow-pale);
  opacity: 0.7;
  bottom: -60px; left: -60px;
}
.split__deco--teal {
  width: 240px; height: 240px;
  background: var(--teal);
  opacity: 0.18;
  top: -100px; left: -50px;
}
.split__deco--blue {
  width: 200px; height: 200px;
  background: var(--pink-hot);
  opacity: 0.22;
  bottom: -80px; right: -50px;
}

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

/* ============================================
   CONTATO — Editorial mega block
   ============================================ */
.section--contato {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contato__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.contato__header .eyebrow { color: #0E7490; background: var(--teal-pale); }

.contato-frase {
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 40px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}
.contato-frase__texto {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.contato-frase__texto em {
  font-style: italic;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contato-mega {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 56px 32px;
  border-top: 2px solid var(--gray-light);
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 64px;
  text-align: center;
  position: relative;
  transition: border-color var(--transition);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.contato-mega::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.contato-mega::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.contato-mega:hover::before,
.contato-mega:hover::after { width: 100%; }

.contato-mega__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contato-mega__number {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1.5vw, 20px);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  transition: color var(--transition);
}
.contato-mega__ddd {
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  color: var(--pink-hot);
  font-weight: 500;
}
.contato-mega__digits {
  font-size: clamp(3rem, 9vw, 7rem);
}
.contato-mega:hover .contato-mega__digits {
  color: var(--blue-vibrant);
}
.contato-mega__arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  color: var(--blue-vibrant);
}
.contato-mega:hover .contato-mega__arrow {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.contato-grid {
  max-width: 900px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
}

.contato-line {
  display: grid;
  grid-template-columns: 56px 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--gray-light);
  transition: padding var(--transition), background var(--transition);
}
.contato-line:hover {
  padding-left: 28px;
  padding-right: 28px;
  background: var(--off-white);
}

.contato-line__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.contato-line:nth-child(1):hover .contato-line__icon { background: var(--whatsapp); color: var(--white); transform: rotate(-8deg); }
.contato-line:nth-child(2):hover .contato-line__icon { background: var(--pink-hot); color: var(--white); transform: rotate(-8deg); }
.contato-line:nth-child(3):hover .contato-line__icon { background: var(--blue-vibrant); color: var(--white); transform: rotate(-8deg); }
.contato-line:nth-child(4):hover .contato-line__icon { background: var(--yellow-gold); color: var(--navy-deep); transform: rotate(-8deg); }

.contato-line__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contato-line__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--navy-deep);
  letter-spacing: -0.005em;
}
.contato-line__arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-mid);
  transition: transform var(--transition), color var(--transition);
}
.contato-line:hover .contato-line__arrow {
  transform: translateX(8px);
  color: var(--pink-hot);
}

.contato__horarios {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.contato__horarios::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--pink-hot);
  opacity: 0.2;
}
.contato__horarios-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-gold);
  position: relative;
  z-index: 1;
}
.contato__horarios-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.contato__horarios-text strong {
  font-style: italic;
  color: var(--yellow-gold);
  font-weight: 700;
}

@media (max-width: 720px) {
  .contato-line { grid-template-columns: 48px 1fr auto; gap: 16px; }
  .contato-line__label { display: none; }
  .contato-mega__arrow { display: none; }
}

/* ============================================
   CTA / AGENDAMENTO — Marquee + big action
   ============================================ */
.section--cta {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cta__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta__decor .blob--pink { top: 20%; right: 8%; opacity: 0.22; }
.cta__decor .blob--yellow { bottom: 15%; left: 5%; opacity: 0.18; }
.cta__decor .blob--teal { top: 40%; right: -60px; opacity: 0.25; }

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.15);
}
.marquee__track {
  display: inline-flex;
  gap: 0;
  align-items: center;
  animation: marquee-scroll 32s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--white);
  will-change: transform;
  backface-visibility: hidden;
}
.marquee__track > span {
  flex-shrink: 0;
  margin-right: 40px;
}
.marquee__dot {
  color: var(--yellow-gold);
  font-size: 0.7em;
  margin-right: 40px;
}
.marquee--reverse .marquee__track {
  animation-name: marquee-scroll-reverse;
  color: var(--pink-light);
}
.marquee--reverse .marquee__dot { color: var(--teal); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.cta__inner {
  text-align: center;
  padding: clamp(96px, 14vw, 160px) 32px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.cta__title-em {
  display: block;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(to right, var(--yellow-gold), var(--pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 4px 0;
}
.cta__lead {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--off-white);
  color: var(--navy-deep);
  padding: 64px 0 32px;
  position: relative;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-light);
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--pink-hot);
}
.footer__crm {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: right;
}
.footer__crm span {
  color: var(--text);
  font-weight: 700;
  margin-right: 6px;
}
.footer__sep { color: var(--gray-mid) !important; font-weight: 400 !important; margin: 0 8px !important; }

.footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0;
}
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: color var(--transition);
  position: relative;
}
.footer__nav a:hover { color: var(--pink-hot); }

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-deep);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.footer__social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--pink-hot);
  color: var(--white);
  border-color: var(--pink-hot);
}

.footer__copy {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  margin-top: 16px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: var(--whatsapp-dark);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Large tablets / small desktops --- */
@media (max-width: 1140px) {
  .container { padding: 0 28px; }
  .header__inner { padding: 16px 28px; }

  .hero__inner { grid-template-columns: 1fr; gap: 56px; padding-left: 24px; }
  .hero__art { max-width: 440px; margin: 0 auto; align-self: center; }
  .hero__rail { left: 12px; }

  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__side { position: static; }

  .diff-pill { padding: 26px 32px; }

  .contato-line { grid-template-columns: 56px 130px 1fr auto; }
}

/* --- Tablets --- */
@media (max-width: 960px) {
  body { font-size: 15.5px; }
  .section { padding: clamp(64px, 10vw, 120px) 0; }
  .section__header { margin-bottom: 56px; }

  /* Header / nav */
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav.is-open { max-height: 600px; }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
  }
  .nav a { width: 100%; padding: 14px 18px; }
  .nav-cta { text-align: center; padding: 14px 18px !important; }

  /* Hero */
  .hero__title { font-size: clamp(2.5rem, 7.5vw, 4.25rem); }
  .hero__meta { gap: 20px; flex-wrap: wrap; }

  /* Quotes wall */
  .quote-card { width: 300px; }

  /* FAQ */
  .faq__layout { grid-template-columns: 1fr; gap: 48px; }
  .faq__side { position: static; }

  /* Missão */
  .split { grid-template-columns: 1fr; }

  /* Áreas — collapse list to dots */
  .areas-tabs { grid-template-columns: 1fr; gap: 0; }
  .areas-tabs__list { display: none; }
  .areas-tabs__panel {
    min-height: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding-top: 28px;
  }
  .areas__deco { display: none; }
  .areas-tabs__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--off-white);
    padding: 20px 24px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .areas-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
  }
  .areas-dot.is-active {
    background: var(--pink-hot);
    width: 28px;
    border-radius: 4px;
  }
  .area-detail__art { width: 84px; height: 84px; margin-bottom: 24px; }

  /* Diferenciais */
  .diff-pills { gap: 12px; }
  .diff-pill { padding: 24px 28px; }

  /* Contato */
  .contato-line { grid-template-columns: 52px 1fr auto; gap: 18px; }
  .contato-line__label { display: none; }
  .contato__horarios { padding: 24px 28px; }
}

/* --- Mobile --- */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .header__inner { padding: 14px 20px; gap: 12px; }

  /* Hero */
  .hero { padding: 64px 0 80px; }
  .hero__rail { display: none; }
  .hero__inner { padding-left: 0; gap: 36px; }
  .hero__art { max-width: 300px; }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3.25rem); margin-bottom: 20px; }
  .hero__title-bold::after { height: 0.14em; }
  .hero__lead { font-size: 1rem; margin-bottom: 28px; }
  .hero__kicker { gap: 10px; margin-bottom: 22px; font-size: 0.72rem; }
  .hero__kicker-divider { width: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 36px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .btn-link { justify-content: center; }
  .hero__meta { gap: 14px; padding-top: 24px; }
  .hero__meta-divider { display: none; }
  .hero__meta-num { font-size: 1.2rem; }
  .hero__sticker--1, .hero__sticker--2, .hero__sticker--3 { font-size: 1.4rem; }
  .hero__sticker--1 { top: 4%; right: 4%; }
  .hero__sticker--2 { bottom: 6%; left: 2%; }
  .hero__sticker--3 { display: none; }

  /* About */
  .about__name { font-size: clamp(2rem, 8vw, 2.75rem); }
  .dropcap { font-size: 4rem; margin: 4px 10px -2px 0; }
  .about__intro { font-size: 1.08rem !important; }
  .about__body p { font-size: 1rem; }

  /* Timeline */
  .timeline { padding-left: 44px; }
  .timeline::before { left: 16px; }
  .timeline__marker { left: -38px; width: 18px; height: 18px; }
  .timeline__title { font-size: 1.4rem; }

  /* Manifesto */
  .manifesto__quote {
    font-size: clamp(1.25rem, 4.8vw, 1.85rem);
    line-height: 1.5;
  }
  .manifesto__hl { white-space: normal; }
  .manifesto__label { font-size: 0.7rem; margin-bottom: 28px; }

  /* Áreas */
  .area-detail__title { font-size: 1.6rem; }
  .area-detail__text { font-size: 1rem; }

  /* Diferenciais */
  /* Diferenciais */
  .diff-pill { padding: 22px 26px; border-radius: 32px; flex: 1 1 260px; }
  .diff-pill__title { font-size: 1.15rem; }
  .diff-pill__desc { font-size: 0.85rem; }

  /* Depoimentos */
  .quote-card { padding: 26px 22px; }
  .quote-card__text { font-size: 0.98rem; }

  /* FAQ */
  .faq-item__question { padding: 22px 0; gap: 14px; }
  .faq-item__q { font-size: 1.05rem; }
  .faq-item__answer { padding: 0 0 24px 38px; font-size: 0.98rem; }
  .faq-item__icon { width: 32px; height: 32px; }

  /* Missão */
  .split__panel { padding: 0 28px; min-height: auto; }
  .split__text { font-size: 1.25rem; }
  .split__signature { font-size: 0.95rem; }

  /* Contato */
  .contato-mega { padding: 44px 20px; }
  .contato-mega__label { font-size: 0.72rem; letter-spacing: 0.18em; }
  .contato-mega__number { flex-direction: column; gap: 6px; align-items: center; }
  .contato-mega__ddd { font-size: 1.85rem; }
  .contato-mega__digits { font-size: clamp(2.5rem, 12vw, 4rem); }
  .contato-mega__arrow { display: none; }
  .contato-line { grid-template-columns: 44px 1fr auto; gap: 14px; padding: 20px 8px; }
  .contato-line:hover { padding-left: 14px; padding-right: 14px; }
  .contato-line__icon { width: 44px; height: 44px; }
  .contato-line__value { font-size: 1rem; }
  .contato-line__arrow { font-size: 1.2rem; }
  .contato__horarios {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
  }

  /* CTA */
  .cta__inner { padding: 72px 20px; }
  .cta__title { font-size: clamp(2.25rem, 8.5vw, 3.5rem); margin-bottom: 20px; }
  .cta__lead { font-size: 1rem; margin-bottom: 32px; }
  .cta__actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .cta__actions .btn { width: 100%; }
  .cta__actions .btn-link { justify-content: center; }
  .marquee__track { font-size: 1rem; gap: 24px; }
  .marquee { padding: 14px 0; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer__top { flex-direction: column; gap: 16px; }
  .footer__crm { text-align: left; }
  .footer__mid { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__nav { flex-direction: column; gap: 12px; }

  /* WhatsApp float */
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header__inner { padding: 12px 16px; gap: 10px; }

  /* Brand */
  .brand { gap: 10px; }
  .brand__mark { width: 44px; height: 44px; margin-top: -6px; }
  .brand__name { font-size: 1rem; }
  .brand__role { font-size: 0.56rem; letter-spacing: 0.12em; }

  .section { padding: clamp(56px, 12vw, 88px) 0; }
  .section__header { margin-bottom: 44px; }
  .section__title { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }

  /* Hero */
  .hero { padding: 48px 0 64px; }
  .hero__inner { gap: 28px; }
  .hero__art { max-width: 240px; }
  .hero__title { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1; }
  .hero__lead { font-size: 0.95rem; line-height: 1.6; }
  .hero__kicker { flex-wrap: wrap; gap: 6px; font-size: 0.66rem; }
  .hero__kicker-divider { display: none; }
  .hero__meta {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 20px;
  }
  .hero__meta-num { font-size: 1.1rem; }
  .hero__meta-label { font-size: 0.6rem; }

  /* About */
  .about__name { font-size: 2.1rem; line-height: 0.98; }
  .dropcap { font-size: 3.5rem; margin: 2px 10px -4px 0; }
  .about__pull { font-size: 1rem; padding-left: 18px; }

  /* Timeline */
  .timeline { padding-left: 40px; }
  .timeline::before { left: 14px; }
  .timeline__marker { left: -36px; width: 16px; height: 16px; }
  .timeline__title { font-size: 1.25rem; }
  .timeline__list li { font-size: 0.92rem; }

  /* Manifesto */
  .manifesto__quote { font-size: 1.2rem; line-height: 1.55; }
  .manifesto__label { font-size: 0.66rem; }
  .manifesto__signature { font-size: 0.95rem; }

  /* Áreas */
  .areas-tabs__panel { padding: 28px 24px; }
  .area-detail__art { width: 72px; height: 72px; margin-bottom: 20px; }
  .area-detail__title { font-size: 1.4rem; }
  .area-detail__text { font-size: 0.95rem; }

  /* Diferenciais */
  /* Diferenciais */
  .diff-pills { gap: 10px; }
  .diff-pill { flex: 1 1 100%; max-width: 100%; padding: 20px 24px; border-radius: 28px; }
  .diff-pill__title { font-size: 1.1rem; }
  .diff-pill__desc { font-size: 0.84rem; }

  /* Depoimentos */
  .quote-card { width: 260px; padding: 22px 20px; }

  /* FAQ */
  .faq-item__question { padding: 20px 0; gap: 10px; }
  .faq-item__num { font-size: 0.7rem; }
  .faq-item__q { font-size: 1rem; }
  .faq-item__answer { padding: 0 0 22px 32px; font-size: 0.95rem; }

  /* Missão */
  .split__panel { padding: 0 22px; min-height: auto; }
  .split__text { font-size: 1.15rem; line-height: 1.45; }

  /* Contato */
  .contato-mega { padding: 36px 16px; }
  .contato-mega__ddd { font-size: 1.6rem; }
  .contato-mega__digits { font-size: clamp(2.25rem, 13vw, 3.25rem); }
  .contato-line { padding: 18px 4px; gap: 12px; }
  .contato-line:hover { padding-left: 8px; padding-right: 8px; }
  .contato-line__icon { width: 40px; height: 40px; }
  .contato-line__value { font-size: 0.9rem; word-break: break-word; }
  .contato__horarios { padding: 20px 20px; }
  .contato__horarios-text { font-size: 0.95rem; }

  /* CTA */
  .cta__inner { padding: 56px 16px; }
  .cta__title { font-size: clamp(2rem, 10vw, 2.5rem); }
  .cta__lead { font-size: 0.95rem; }
  .marquee__track { font-size: 0.95rem; gap: 20px; }
  .marquee { padding: 12px 0; }

  /* Footer */
  .footer__name { font-size: 1.35rem; }
  .footer__slogan { font-size: 0.95rem; }
  .footer__crm { font-size: 0.7rem; }

  /* WhatsApp float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 14px;
    right: 14px;
  }
}

/* --- Extra small (< 360px) --- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .header__inner { padding: 10px 14px; }
  .brand__name { font-size: 0.92rem; }
  .brand__role { display: none; }

  .hero__title { font-size: 1.85rem; }
  .section__title { font-size: 1.75rem; }
  .about__name { font-size: 1.85rem; }
  .cta__title { font-size: 1.9rem; }
  .contato-mega__digits { font-size: 2rem; }
}

/* --- Landscape phones (height-sensitive) --- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { padding: 40px 0 56px; }
  .nav.is-open { max-height: 80vh; overflow-y: auto; }
}
