/* =============================================================================
   DÉBORA MENDONÇA — Neuropsicóloga Infantil em Araraquara
   style.css — único arquivo de estilos
   ============================================================================= */

/* 1. CSS VARIABLES */
:root {
  /* Palette */
  --roxo-deep:     #6B3FA0;
  --roxo-primary:  #6B3FA0;
  --roxo-mid:      #8B5CC8;
  --lilas-accent:  #C4A8E0;
  --lilas-light:   #E8D8F8;
  --lilas-surface: #F5F0FF;
  --cream:         #FEFCFF;
  --white:         #FFFFFF;
  --text-dark:     #1A1025;
  --text-muted:    #6B5A80;

  /* Light lavender section backgrounds */
  --lilas-section-a: #F8F4FE;
  --lilas-section-b: #EDE1FA;
  --lilas-section-c: #F3ECFB;

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Shadows */
  --shadow-sm:     0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:     0 24px 60px rgba(0,0,0,0.16);
  --shadow-purple: 0 20px 60px rgba(107,63,160,0.35);

  /* Transition */
  --ease: 200ms ease;
  --ease-premium: 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

/* =============================================================================
   NAVBAR
   ============================================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
  background: rgba(248,244,254,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(196,168,224,0.12), 0 4px 24px rgba(0,0,0,0.2);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.navbar-subtitle {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(74,38,112,0.85);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,16,37,0.75);
  text-decoration: none;
  transition: color var(--ease);
  cursor: pointer;
}

.navbar-nav a:hover,
.navbar-nav a:focus-visible {
  color: var(--roxo-primary);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--roxo-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  background: var(--roxo-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(107,63,160,0.4);
}

.btn-nav:focus-visible {
  outline: 2px solid var(--lilas-accent);
  outline-offset: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background var(--ease);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(107,63,160,0.08);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar-mobile {
  background: rgba(248,244,254,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(107,63,160,0.12);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.navbar-mobile[hidden] {
  display: none;
}

.mobile-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(26,16,37,0.82);
  text-decoration: none;
  transition: color var(--ease);
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-link:hover {
  color: var(--roxo-primary);
}

.mobile-cta {
  width: 100%;
  max-width: 300px;
  justify-content: center;
  padding: 0.875rem;
  margin-top: 0.25rem;
}

/* =============================================================================
   BUTTONS (global)
   ============================================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--roxo-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.875rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  border: none;
  min-height: 52px;
}

.btn-primary:hover {
  background: var(--roxo-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,63,160,0.45);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--lilas-accent);
  outline-offset: 2px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107,63,160,0.04);
  color: var(--roxo-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.875rem;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease), transform var(--ease);
  cursor: pointer;
  border: 2px solid rgba(107,63,160,0.5);
  min-height: 52px;
}

.btn-outline:hover {
  border-color: var(--roxo-primary);
  color: var(--roxo-primary);
  background: rgba(107,63,160,0.09);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--lilas-accent);
  outline-offset: 2px;
}

/* =============================================================================
   HERO
   ============================================================================= */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--lilas-section-a) 0%, var(--lilas-section-b) 50%, var(--lilas-section-c) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Subtle grid texture — frontend-design: geometric depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,63,160,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,63,160,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Atmospheric light orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--tr {
  top: -20%;
  right: -12%;
  width: 720px;
  height: 720px;
  background: radial-gradient(ellipse, rgba(139,92,200,0.18) 0%, rgba(107,63,160,0.10) 50%, transparent 80%);
}

.hero-orb--bl {
  bottom: -25%;
  left: -14%;
  width: 660px;
  height: 660px;
  background: radial-gradient(ellipse, rgba(107,63,160,0.16) 0%, rgba(74,38,112,0.08) 50%, transparent 80%);
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ring--1 {
  top: -18%;
  right: 8%;
  width: 780px;
  height: 780px;
  border-color: rgba(107,63,160,0.09);
}

.hero-ring--2 {
  bottom: -25%;
  right: -8%;
  width: 480px;
  height: 480px;
  border-color: rgba(107,63,160,0.14);
}

.hero-dots {
  position: absolute;
  bottom: 8%;
  left: 4%;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(107,63,160,0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(107,63,160,0.08);
  border: 1px solid rgba(107,63,160,0.2);
  color: var(--roxo-primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

/* Hero H1 */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  line-height: 1.06;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--roxo-mid);
}

/* Hero subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}


.hero-trust-sep {
  color: rgba(107,63,160,0.4);
  font-size: 1.1rem;
  line-height: 1;
}

/* Hero photo column */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}

/* Soft glow blob behind photo */
.hero-photo-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(196,168,224,0.32) 0%, rgba(139,92,200,0.18) 35%, rgba(107,63,160,0.08) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(107,63,160,0.40)) drop-shadow(0 28px 72px rgba(45,27,78,0.55));
}

/* Floating Google review card */
.hero-google-card {
  position: absolute;
  bottom: 2.5rem;
  left: -0.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(107,63,160,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 32px rgba(107,63,160,0.16), 0 1px 0 rgba(255,255,255,0.7) inset;
  min-width: 152px;
}

.hero-google-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.hero-google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-google-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: #5F6368;
  letter-spacing: 0.04em;
}

.hero-google-stars {
  color: #FBBF24;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

.hero-google-score {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.1rem;
}

.hero-google-count {
  font-family: var(--font-body);
  font-size: 0.66rem;
  color: #888;
  line-height: 1.3;
}

/* =============================================================================
   NÚMEROS / STATS
   ============================================================================= */

.numeros {
  background: linear-gradient(160deg, var(--lilas-surface) 0%, var(--white) 55%);
  padding: 5rem 0;
  position: relative;
}

.numeros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lilas-accent), var(--roxo-primary), var(--lilas-accent), transparent);
  opacity: 0.5;
}

.numeros-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.numeros-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 2rem 2.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--roxo-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.stat-number-modality {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.stat-modality-line {
  display: block;
}

.stat-stars {
  display: block;
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 160px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--lilas-light);
  flex-shrink: 0;
}

/* =============================================================================
   REUSABLE SECTION COMPONENTS
   ============================================================================= */

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roxo-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =============================================================================
   DOR — VOCÊ RECONHECE ISSO?
   ============================================================================= */

.dor {
  background: var(--lilas-surface);
  padding: 5rem 0;
}

.dor-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  counter-reset: dor;
}

.dor-card {
  background: var(--white);
  border: 1px solid var(--lilas-light);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--ease-premium), box-shadow var(--ease-premium), transform var(--ease-premium);
  cursor: default;
  position: relative;
  overflow: hidden;
  counter-increment: dor;
}

/* Large editorial number — frontend-design: unexpected typography moment */
.dor-card::before {
  content: counter(dor, decimal-leading-zero);
  position: absolute;
  top: -0.25rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(107,63,160,0.09);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.dor-card:hover {
  border-color: var(--lilas-accent);
  box-shadow: 0 14px 36px rgba(107,63,160,0.13), 0 4px 10px rgba(107,63,160,0.07);
  transform: translateY(-5px);
}

.dor-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lilas-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--roxo-primary);
  flex-shrink: 0;
  transition: background var(--ease-premium), transform var(--ease-premium);
}

.dor-card:hover .dor-icon {
  background: rgba(107,63,160,0.14);
  transform: scale(1.08) rotate(-4deg);
}

.dor-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  flex: 1;
}

.dor-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--roxo-primary);
  background: rgba(107,63,160,0.07);
  border: 1px solid rgba(107,63,160,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

.dor-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.dor-bottom-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
}

/* =============================================================================
   SERVIÇOS — COMO POSSO AJUDAR
   ============================================================================= */

.servicos {
  background: var(--white);
  padding: 5rem 0;
}

.servicos-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.servico-card {
  background: var(--lilas-surface);
  border: 1px solid rgba(196,168,224,0.45);
  border-radius: 16px;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--ease-premium), border-color var(--ease-premium), box-shadow var(--ease-premium), transform var(--ease-premium);
  cursor: default;
}

.servico-card:hover {
  background: var(--white);
  border-color: var(--roxo-primary);
  box-shadow: 0 16px 40px rgba(107,63,160,0.14), 0 4px 12px rgba(107,63,160,0.08);
  transform: translateY(-6px);
}

.servico-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196,168,224,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--roxo-primary);
  flex-shrink: 0;
  transition: background var(--ease-premium), color var(--ease-premium), transform var(--ease-premium);
}

.servico-card:hover .servico-icon {
  background: var(--roxo-primary);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

/* Featured card — Avaliação Completa highlighted */
.servico-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--roxo-deep) 0%, #3a1870 100%);
  border: 1px solid rgba(196,168,224,0.15);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem;
  transition: border-color var(--ease-premium), box-shadow var(--ease-premium), transform var(--ease-premium);
}

.servico-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(196,168,224,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease-premium);
  pointer-events: none;
}

.servico-featured:hover::before {
  opacity: 1;
}

.servico-card.servico-featured:hover {
  background: linear-gradient(135deg, var(--roxo-deep) 0%, #3a1870 100%);
  border-color: rgba(196,168,224,0.35);
  box-shadow: 0 20px 52px rgba(45,27,78,0.4), 0 6px 16px rgba(107,63,160,0.2);
  transform: translateY(-5px);
}

.servico-featured .servico-icon {
  background: rgba(196,168,224,0.12);
  color: var(--lilas-accent);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}

.servico-featured h3 {
  font-size: 1.42rem;
  color: var(--white);
  margin-top: 0.25rem;
}

.servico-featured p {
  color: rgba(255,255,255,0.72);
  font-size: 0.87rem;
  flex: initial;
  margin: 0;
}

.servico-featured-top,
.servico-featured-body,
.servico-featured-domains {
  position: relative;
  z-index: 1;
}

.servico-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.servico-featured-badge {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D1450;
  background: var(--lilas-accent);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.servico-featured-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.servico-featured-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.servico-featured-domains span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
}

/* Psicoterapia - featured menor, span 1 forçado */
.servico-featured-small {
  grid-column: span 1 !important;
  padding: 1.875rem;
}

.servico-featured-small h3 {
  font-size: 1.18rem !important;
  line-height: 1.2;
}

.servico-featured-small .servico-featured-badge {
  font-size: 0.62rem;
  padding: 0.32rem 0.85rem;
}

.servico-featured-small p {
  font-size: 0.85rem !important;
}

.servico-featured-domains-small {
  gap: 0.35rem;
}

.servico-featured-domains-small span {
  font-size: 0.62rem;
  padding: 0.2rem 0.58rem;
}

/* Secondary wide card — Adultos */
.servico-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.875rem;
  background: var(--white);
  border: 1px solid var(--lilas-light);
}

.servico-wide .servico-icon {
  flex-shrink: 0;
}

.servico-wide h3 {
  font-size: 1.15rem;
  margin-bottom: 0.1rem;
}

.servico-wide p {
  margin: 0;
  font-size: 0.875rem;
}

.servico-wide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.servico-wide-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.servico-online-badge {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roxo-primary);
  background: rgba(107,63,160,0.07);
  border: 1px solid rgba(107,63,160,0.18);
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
}


.servico-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.servico-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

/* Override generic card colors for the dark featured card */
.servico-card.servico-featured h3 {
  color: var(--white);
}

.servico-card.servico-featured p {
  color: rgba(255,255,255,0.75);
  flex: initial;
}

/* Services title slightly larger — more visual weight than dor section */
.servicos .section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}


.servicos-cta {
  display: flex;
  justify-content: center;
}

/* =============================================================================
   SOBRE — QUEM É A DÉBORA
   ============================================================================= */

.sobre {
  background: linear-gradient(135deg, var(--lilas-section-c) 0%, var(--lilas-section-b) 55%, var(--lilas-section-a) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Atmospheric orb */
.sobre::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,200,0.14) 0%, rgba(107,63,160,0.06) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
}

.sobre::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(107,63,160,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Photo side */
.sobre-visual {
  position: relative;
}

.sobre-photo-wrap {
  position: relative;
}

.sobre-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(196,168,224,0.22);
  box-shadow: var(--shadow-purple), 0 0 0 8px rgba(196,168,224,0.05);
  position: relative;
}

/* Subtle vignette at bottom of photo */
.sobre-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,38,112,0.12) 0%, transparent 40%);
  pointer-events: none;
}

.sobre-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.sobre-crp-badge {
  position: absolute;
  bottom: 1.75rem;
  left: -1rem;
  background: var(--roxo-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.125rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  max-width: 200px;
  line-height: 1.4;
}

/* Content side */
.sobre-eyebrow {
  color: var(--roxo-primary);
  display: block;
  margin-bottom: 1.25rem;
}

.sobre-nome {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  white-space: nowrap;
}

.sobre-role {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--roxo-mid);
  margin-bottom: 1.25rem;
}

.sobre-bio {
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  max-width: 530px;
}

/* Instituto Ludo callout */
.sobre-ludo {
  background: rgba(107,63,160,0.06);
  border: 1px solid rgba(107,63,160,0.16);
  border-left: 3px solid var(--roxo-primary);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0 1.5rem;
}

.sobre-ludo-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.sobre-ludo-header strong {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--roxo-primary);
}

.sobre-ludo-header svg {
  color: var(--roxo-primary);
  flex-shrink: 0;
}

.sobre-ludo p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Credential chips */
.sobre-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.sobre-cred {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(107,63,160,0.07);
  border: 1px solid rgba(107,63,160,0.2);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
}

.sobre-cred svg {
  color: var(--roxo-primary);
  flex-shrink: 0;
}

/* Gallery */
.sobre-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.sobre-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(107,63,160,0.15);
  background: none;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: border-color var(--ease-premium), box-shadow var(--ease-premium), transform var(--ease-premium);
}

.sobre-gallery-item:hover,
.sobre-gallery-item:focus-visible {
  border-color: var(--roxo-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.sobre-gallery-item:focus-visible {
  outline: 2px solid var(--roxo-primary);
  outline-offset: 3px;
}

.sobre-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease-premium);
}

.sobre-gallery-item:hover img {
  transform: scale(1.06);
}

.sobre-gallery-zoom {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--roxo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity var(--ease-premium), transform var(--ease-premium);
  pointer-events: none;
}

.sobre-gallery-item:hover .sobre-gallery-zoom,
.sobre-gallery-item:focus-visible .sobre-gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,16,37,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.24);
}

.lightbox-close:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
}

.lightbox-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 500px;
}

/* =============================================================================
   COMO FUNCIONA — PROCESSO / TIMELINE
   ============================================================================= */

.processo {
  background: var(--lilas-surface);
  padding: 7rem 0;
}

.processo-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.processo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
}

.processo-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.75rem;
  align-items: start;
}

/* Left column: circle + connecting line */
.processo-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.processo-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--roxo-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(107,63,160,0.38);
  letter-spacing: -0.02em;
}

.processo-connector {
  width: 2px;
  flex: 1;
  min-height: 52px;
  background: linear-gradient(to bottom, var(--roxo-primary) 0%, var(--lilas-light) 100%);
  margin: 0.5rem 0;
  border-radius: 2px;
  opacity: 0.6;
}

.processo-step:last-child .processo-connector {
  display: none;
}

/* Right column: content */
.processo-body {
  padding-bottom: 3rem;
  padding-top: 0.5rem;
}

.processo-step:last-child .processo-body {
  padding-bottom: 0;
}

.processo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lilas-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--roxo-primary);
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.processo-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.processo-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
}

.processo-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--roxo-primary);
  background: rgba(107,63,160,0.07);
  border: 1px solid rgba(107,63,160,0.15);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.processo-desc {
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 580px;
}

/* CTA block */
.processo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.processo-cta-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
}

/* =============================================================================
   DEPOIMENTOS — TESTIMONIALS CAROUSEL
   ============================================================================= */

.depoimentos {
  background: var(--cream);
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.depoimentos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.depoimentos .section-header {
  margin-bottom: 2.5rem;
}

.depoimentos .section-title em {
  font-style: italic;
  color: var(--roxo-primary);
}

/* Google rating bar */
.dep-google-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.dep-google-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--lilas-light);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.dep-bar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.dep-bar-stars {
  color: #FBBC04;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.dep-bar-score {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dep-bar-count {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dep-bar-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--roxo-primary);
  text-decoration: none;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--lilas-light);
  transition: var(--ease);
}

.dep-bar-link:hover {
  background: var(--lilas-surface);
  border-color: var(--roxo-primary);
}

/* Carousel outer wrapper */
.dep-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  padding-top: 8px;
  margin-top: -8px;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}

/* Carousel buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--lilas-light);
  background: var(--white);
  color: var(--roxo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--roxo-primary);
  border-color: var(--roxo-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107,63,160,0.28);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dep card */
.dep-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--lilas-light);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.dep-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lilas-accent);
}

.dep-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--roxo-primary), var(--roxo-mid));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dep-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.dep-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dep-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dep-google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dep-stars {
  color: #FBBC04;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.dep-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  border: none;
  padding: 0;
  margin: 0;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lilas-light);
  border: none;
  cursor: pointer;
  padding: 8px;
  background-clip: content-box;
  box-sizing: content-box;
  transition: background 200ms ease;
}

.carousel-dot.active {
  background: var(--roxo-primary);
  transform: scale(1.25);
}

/* =============================================================================
   FAQ — ACCORDION
   ============================================================================= */

.faq {
  background: var(--white);
  padding: 7rem 0 6rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq .section-title em {
  font-style: italic;
  color: var(--roxo-primary);
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--lilas-light);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

.faq-item:has([aria-expanded="true"]) {
  border-color: var(--lilas-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 200ms ease;
}

.faq-question:hover {
  color: var(--roxo-primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--roxo-primary);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--roxo-primary);
  transition: transform 300ms ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 320ms ease, padding-bottom 320ms ease;
}

.faq-item:has([aria-expanded="true"]) .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer p + p {
  margin-top: 0.9rem;
}

.faq-answer strong {
  color: var(--text-dark);
  font-weight: 700;
}

.faq-answer ul {
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
  list-style: none;
}

.faq-answer ul li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 0.9rem;
}

.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--roxo-primary);
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}

.faq-cta-btn:hover {
  background: #20bc5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* =============================================================================
   CONTATO — CONTACT & MAP
   ============================================================================= */

.contato {
  background: linear-gradient(135deg, var(--lilas-section-c) 0%, var(--lilas-section-b) 55%, var(--lilas-section-a) 100%);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contato-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contato-block-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--roxo-primary);
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 200ms ease;
  word-break: break-all;
}

.contato-link:hover {
  color: var(--roxo-primary);
}

.contato-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(107,63,160,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-sociais {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(107,63,160,0.18);
  background: rgba(107,63,160,0.05);
  width: fit-content;
  transition: all 200ms ease;
}

.social-btn:hover {
  background: rgba(107,63,160,0.1);
  border-color: var(--roxo-primary);
  color: var(--roxo-primary);
}

.contato-address {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.8;
  display: flex;
  gap: 0.75rem;
}

.contato-address svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contato-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 200ms ease;
  width: fit-content;
}

.contato-wa-btn:hover {
  background: #20bc5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.contato-map-col {
  position: sticky;
  top: 100px;
}

.contato-map {
  width: 100%;
  height: 440px;
  border-radius: 20px;
  border: 2px solid rgba(196,168,224,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: block;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
  background: var(--lilas-section-b);
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(107,63,160,0.14);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(107,63,160,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-photo {
  width: 160px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(107,63,160,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  margin-bottom: 0.875rem;
}

.footer-dev {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-dev-link {
  color: var(--roxo-primary);
  text-decoration: underline;
  text-decoration-color: rgba(107,63,160,0.4);
  text-underline-offset: 3px;
  transition: color var(--ease), text-decoration-color var(--ease);
}

.footer-dev-link:hover {
  color: var(--roxo-mid);
  text-decoration-color: var(--roxo-mid);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer-crp {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--roxo-primary);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--roxo-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-legal {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(26,16,37,0.62);
}

/* =============================================================================
   WHATSAPP FLOAT
   ============================================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  animation: wa-pulse 2s ease-out 1.5s 1;
  transition: transform var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 3px;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Desktop section padding */
@media (min-width: 1025px) {
  .dor {
    padding: 8rem 0;
  }

  .servicos {
    padding: 10rem 0 8rem;
  }

  .sobre {
    padding: 6rem 0;
  }
}

/* =============================================================================
   HERO NAME + CTA PULSE
   ============================================================================= */

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 600;
  color: var(--roxo-primary);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

@keyframes cta-pulse {
  0%   { box-shadow: 0 8px 24px rgba(107,63,160,0.4), 0 0 0 0 rgba(107,63,160,0.5); }
  60%  { box-shadow: 0 8px 24px rgba(107,63,160,0.4), 0 0 0 12px rgba(107,63,160,0); }
  100% { box-shadow: 0 8px 24px rgba(107,63,160,0.4), 0 0 0 0 rgba(107,63,160,0); }
}

.hero-cta-pulse {
  animation: cta-pulse 2.4s ease-out 1s 3;
}

.hero-cta-pulse:hover {
  animation: none;
}

/* =============================================================================
   SCROLL REVEAL
   ============================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   RESPONSIVE — TABLET ≤ 1024px
   ============================================================================= */

@media (max-width: 1024px) {
  .stat-number-modality {
    font-size: 1.7rem;
  }

  .hero-ring--1,
  .hero-ring--2 {
    display: none;
  }

  .hero-dots {
    opacity: 0.3;
    width: 100px;
    height: 100px;
  }

  /* Sobre */
  .sobre-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .sobre-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .sobre-crp-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.25rem;
  }

  .sobre-bio {
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-ludo {
    text-align: left;
  }

  .sobre-credentials {
    justify-content: center;
  }

  .sobre-container .btn-primary {
    margin: 0 auto;
  }

  /* Processo */
  .processo-head {
    flex-direction: column;
    gap: 0.4rem;
  }

  /* Depoimentos */
  .carousel-slide {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }

  .dep-google-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
  }

  /* Números */
  .numeros-grid {
    grid-template-columns: 1fr 1fr;
    background: var(--lilas-light);
    gap: 1px;
    align-items: stretch;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Dor + Serviços */
  .dor,
  .servicos {
    padding: 5rem 0;
  }

  .dor-grid,
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servico-featured {
    grid-column: 1 / -1 !important;
  }

  .servico-featured-small {
    grid-column: 1 / -1 !important;
  }

  .servico-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 1.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-photo-wrap {
    min-height: auto;
  }

  .hero-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-photo-blob {
    width: 300px;
    height: 300px;
  }

  .hero-google-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.75rem;
  }

  /* FAQ */
  .faq {
    padding: 5rem 0 4rem;
  }

  /* Contato */
  .contato {
    padding: 5rem 0 4rem;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contato-map-col {
    position: static;
  }

  .contato-map {
    height: 320px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* =============================================================================
   RESPONSIVE — MEDIUM MOBILE ≤ 600px
   ============================================================================= */

@media (max-width: 600px) {
  .dor-grid,
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servico-featured,
  .servico-featured-small {
    grid-column: 1 / -1 !important;
  }
}

/* =============================================================================
   RESPONSIVE — MOBILE ≤ 480px
   ============================================================================= */

@media (max-width: 480px) {
  /* Hero Google card */
  .hero-google-card {
    padding: 0.65rem 0.85rem;
    min-width: 122px;
    bottom: -0.5rem;
  }

  .hero-google-header {
    gap: 0.3rem;
    margin-bottom: 0.25rem;
  }

  .hero-google-icon {
    width: 15px;
    height: 15px;
  }

  .hero-google-label {
    font-size: 0.6rem;
  }

  .hero-google-stars {
    font-size: 0.7rem;
  }

  .hero-google-score {
    font-size: 1.6rem;
  }

  .hero-google-count {
    font-size: 0.58rem;
  }

  /* Modality stat */
  .stat-number-modality {
    font-size: 1.35rem !important;
    gap: 0.05rem;
  }

  /* Sobre */
  .sobre {
    padding: 5rem 0;
  }

  .sobre-nome {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    white-space: normal;
  }

  .sobre-crp-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.875rem;
  }

  /* Depoimentos */
  .depoimentos {
    padding: 5rem 0 4rem;
  }

  .dep-carousel-outer {
    gap: 0;
  }

  .dep-carousel-outer .carousel-btn {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  /* Processo */
  .processo {
    padding: 5rem 0;
  }

  .processo-step {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
  }

  .processo-num {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .processo-title {
    font-size: 1.35rem;
  }

  /* Números */
  .numeros {
    padding: 3.5rem 0;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .stat-item {
    padding: 2rem 1rem;
  }

  /* Dor + Serviços */
  .dor,
  .servicos {
    padding: 4rem 0;
  }

  .dor-grid,
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servico-featured,
  .servico-featured-small {
    grid-column: 1 / -1 !important;
    flex-direction: column;
  }

  .servico-wide {
    padding: 1.5rem;
  }

  .dor-card,
  .servico-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .navbar-container {
    padding: 1rem 1.25rem;
  }

  .navbar-subtitle {
    display: none;
  }

  .btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-container {
    padding: 5.5rem 1.25rem 3.5rem;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero-trust-sep {
    display: none;
  }

  .hero-photo {
    max-width: 260px;
  }

  .hero-photo-blob {
    width: 260px;
    height: 260px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  /* FAQ mobile */
  .faq {
    padding: 4rem 0 3rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.925rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  /* Contato mobile */
  .contato {
    padding: 4rem 0 3rem;
  }

  .contato-map {
    height: 260px;
  }

  .contato-wa-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer mobile */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-top {
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-nav {
    gap: 0.4rem 1.25rem;
  }

  .footer-photo {
    width: 80px;
  }

  .sobre-gallery {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }
}
