/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

a, button, summary, [role="button"], .service {
  cursor: pointer;
}

:root {
  --primary-color: #8b5a3c;
  --primary-light: #a67c5a;
  --primary-dark: #6b4426;
  --secondary-color: #d4a574;
  --accent-color: #e6c8a0;

  --text-primary: #2d1810;
  --text-secondary: #5d4e47;
  --text-light: #8a7a72;
  --bg-primary: #fefcf8;
  --bg-secondary: #f5ede4;
  --bg-tertiary: #ebe0d2;
  --bg-warm: #f9f1e8;
  --bg-accent: #f0e2d0;

  --surface-1: rgba(255, 255, 255, 0.9);
  --surface-2: rgba(255, 255, 255, 0.7);
  --surface-3: rgba(255, 255, 255, 0.5);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);

  --shadow-sm: 0 1px 2px 0 rgba(45, 24, 16, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(45, 24, 16, 0.1), 0 2px 4px -1px rgba(45, 24, 16, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(45, 24, 16, 0.1), 0 4px 6px -2px rgba(45, 24, 16, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(45, 24, 16, 0.1), 0 10px 10px -5px rgba(45, 24, 16, 0.04);
  --shadow-glow: 0 0 40px rgba(139, 90, 60, 0.15);

  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: "Inter", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="dark"] {
  --text-primary: #f8f4f0;
  --text-secondary: #e6c8a0;
  --text-light: #d4a574;
  --bg-primary: #1a0f08;
  --bg-secondary: #2d1810;
  --bg-tertiary: #3d2418;
  --bg-warm: #241209;
  --bg-accent: #352015;
  --surface-1: rgba(45, 24, 16, 0.9);
  --surface-2: rgba(45, 24, 16, 0.7);
  --surface-3: rgba(45, 24, 16, 0.5);
  --glass: rgba(45, 24, 16, 0.3);
  --glass-border: rgba(212, 165, 116, 0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Custom scrollbar — acompanha o tema */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--bg-secondary);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  border-radius: 10px;
  border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light), var(--primary-dark));
}

body.preloading * { transition: none !important; }
body.app-ready .navbar,
body.app-ready header,
body.app-ready section,
body.app-ready footer,
body.app-ready .whatsapp-float,
body.app-ready .to-top,
body.app-ready .scrollbar-progress { visibility: visible; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===== WAVE DIVIDERS — ondas fluidas sem gaps ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 70px;
  margin-top: -70px;
  z-index: 2;
  pointer-events: none;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  min-width: 1440px;
}

.wave-path {
  fill: var(--bg-secondary);
}

/* Animação fluida — SVG 2x largo desliza horizontalmente */
@keyframes wave-flow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wave-divider:not(.wave-hero) svg {
  animation: wave-flow var(--wave-speed, 8s) linear infinite;
}

/* Hero wave */
.wave-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 80px;
  margin-top: 0;
}
.wave-hero svg { width: 200%; animation: wave-flow 12s linear infinite; }
.wave-hero .wave-back { fill: var(--bg-secondary); opacity: 0.4; }
.wave-hero .wave-front { fill: var(--bg-secondary); }
.wave-hero svg:first-child { animation-duration: 14s; }
.wave-hero svg:last-child { animation-duration: 10s; }

/* Cores — cada wave preenche com a cor da seção de DESTINO (abaixo) */
.wave-about .wave-path { fill: var(--bg-tertiary); }
.wave-services .wave-path { fill: var(--bg-warm); }
.wave-tele .wave-path { fill: var(--bg-accent); }
.wave-map .wave-path { fill: var(--bg-primary); }
.wave-testimonials .wave-path { fill: var(--bg-secondary); }
.wave-faq .wave-path { fill: rgba(90, 53, 32, 0.88); }

[data-theme="dark"] .wave-hero .wave-back,
[data-theme="dark"] .wave-hero .wave-front { fill: var(--bg-primary); }
[data-theme="dark"] .wave-about .wave-path { fill: var(--bg-tertiary); }
[data-theme="dark"] .wave-services .wave-path { fill: var(--bg-secondary); }

/* Velocidades variadas — cada onda com ritmo próprio */
.wave-about svg { --wave-speed: 7s; }
.wave-services svg { --wave-speed: 9s; }
.wave-tele svg { --wave-speed: 8s; }
.wave-map svg { --wave-speed: 11s; }
.wave-testimonials svg { --wave-speed: 7.5s; }
.wave-faq svg { --wave-speed: 10s; }

/* Segunda camada — mais lenta, semi-transparente, direção oposta */
.wave-divider:not(.wave-hero) svg:nth-child(2) {
  opacity: 0.35;
  animation-direction: reverse;
  animation-duration: calc(var(--wave-speed, 8s) * 1.6);
}

/* Seções precisam de padding-bottom extra para a onda sobrepor */
.about-section,
.services-section,
.teletherapy-section,
.map-section,
.testimonials-section,
.faq-section {
  padding-bottom: calc(var(--space-3xl) + 70px);
}

/* ===== ORBS (luzes flutuantes do hero) ===== */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  will-change: transform;
}

.orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.6), transparent 70%);
  top: 10%; left: 10%;
  animation: orb-float-1 12s ease-in-out infinite;
}

.orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(139, 90, 60, 0.5), transparent 70%);
  top: 60%; right: 15%;
  animation: orb-float-2 15s ease-in-out infinite;
}

.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230, 200, 160, 0.4), transparent 70%);
  bottom: 20%; left: 50%;
  animation: orb-float-3 10s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(80px, -40px) scale(1.1); }
  66%      { transform: translate(-30px, 60px) scale(0.9); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-60px, 30px) scale(1.15); }
  66%      { transform: translate(40px, -50px) scale(0.85); }
}

@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, -30px) scale(1.2); }
}

/* Navbar com blur dinâmico e microinterações */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 248, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(139, 90, 60, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 65px;
}

.navbar.scrolled {
  height: 50px;
  background: rgba(254, 252, 248, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom-color: transparent;
}

[data-theme="dark"] .navbar {
  background: rgba(26, 15, 8, 0.85);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 15, 8, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 65px;
  gap: var(--space-lg);
  transition: all 0.3s ease;
}

.navbar.scrolled .container {
  height: 50px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.brand img {
  height: 35px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .brand img {
  height: 28px;
}

.brand:hover img {
  transform: scale(1.05);
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-self: end;
}

/* Toggle de Tema Moderno */
.theme-toggle {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .theme-toggle {
  width: 35px;
  height: 35px;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: var(--transition-slow);
}

.theme-toggle:hover::before {
  left: 100%;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(180deg);
  box-shadow: var(--shadow-lg);
}

.sun-icon,
.moon-icon {
  transition: var(--transition-normal);
  width: 16px;
  height: 16px;
}

.navbar.scrolled .sun-icon,
.navbar.scrolled .moon-icon {
  width: 14px;
  height: 14px;
}

[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: rotate(90deg);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.sun-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.moon-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

/* Hamburger Menu Moderno */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.hamburger:hover {
  background: rgba(139, 90, 60, 0.1);
}

.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.navbar.scrolled .hamburger .line {
  width: 20px;
  height: 2px;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Menu Moderno */
.menu {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.navbar.scrolled .menu {
  gap: var(--space-sm);
}

.menu-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-normal);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.navbar.scrolled .menu-item {
  font-size: 0.8rem;
  padding: var(--space-xs) var(--space-xs);
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.menu-item:hover::before,
.menu-item.active::before {
  opacity: 0.1;
}

.menu-text {
  position: relative;
  z-index: 1;
}

.menu-indicator {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.menu-item:hover .menu-indicator,
.menu-item.active .menu-indicator {
  width: 80%;
}

.menu-item:hover,
.menu-item.active {
  color: var(--primary-color);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(139, 90, 60, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #3d2010;
}

/* Foto de fundo */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/psicVania.jpg') center 20% / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
  animation: hero-zoom 25s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.1) translate(-1%, 0.5%); }
  100% { transform: scale(1.07) translate(0.5%, -0.5%); }
}

/* Overlay gradiente sobre a foto */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(61, 32, 16, 0.65) 0%,
      rgba(90, 53, 32, 0.55) 30%,
      rgba(122, 78, 53, 0.5) 50%,
      rgba(155, 107, 72, 0.55) 70%,
      rgba(61, 32, 16, 0.75) 100%
    ),
    radial-gradient(ellipse at 50% 40%, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
  animation: hero-overlay-pulse 10s ease-in-out infinite alternate;
}

@keyframes hero-overlay-pulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.92; }
  100% { opacity: 1; }
}

/* Removido arco — agora temos wave divider SVG */
.hero::after { display: none; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: -3rem;
  color: white;
}

/* Badge animada */
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero h2 {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  font-family: var(--font-secondary);
  position: relative;
}

.hero h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Botão CTA — com shimmer e glow */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: #ffffff;
  color: #4a2818;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.1);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  will-change: transform;
}

.cta-button svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
  transition: none;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  background: #f5ebe0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 0 40px rgba(212, 165, 116, 0.2);
  color: #4a2818;
}

.cta-button:active {
  transform: translateY(-1px) scale(0.98);
}

/* Efeito parallax no scroll */
.hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-parallax-bg {
  display: none;
}

/* Partículas flutuantes — animação contínua suave */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: float-particle var(--dur, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  width: var(--size, 5px);
  height: var(--size, 5px);
}

.particle:nth-child(1) { --x: 8%;  --size: 4px; --dur: 16s; --delay: 0s; }
.particle:nth-child(2) { --x: 22%; --size: 6px; --dur: 20s; --delay: 2s; }
.particle:nth-child(3) { --x: 38%; --size: 3px; --dur: 14s; --delay: 5s; }
.particle:nth-child(4) { --x: 52%; --size: 7px; --dur: 22s; --delay: 1s; }
.particle:nth-child(5) { --x: 68%; --size: 4px; --dur: 17s; --delay: 4s; }
.particle:nth-child(6) { --x: 78%; --size: 5px; --dur: 19s; --delay: 7s; }
.particle:nth-child(7) { --x: 88%; --size: 3px; --dur: 15s; --delay: 3s; }
.particle:nth-child(8) { --x: 95%; --size: 6px; --dur: 21s; --delay: 6s; }

@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg) scale(0); opacity: 0; }
  5%   { opacity: 0.8; transform: translateY(90vh) rotate(20deg) scale(1); }
  50%  { opacity: 1; transform: translateY(40vh) rotate(180deg) scale(1.2); }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-50px) rotate(360deg) scale(0.5); opacity: 0; }
}

/* Seções */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: title-shimmer 4s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

/* ===== ABOUT SECTION — Premium ===== */
.about-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-warm) 100%);
}

.about-section .container {
  max-width: 1100px;
}

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Foto com moldura decorativa */
.about-photo-wrapper {
  position: relative;
}

.about-photo-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-photo-wrapper:hover .about-photo-frame img {
  transform: scale(1.05);
}

.about-photo-decoration {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--primary-light);
  border-radius: var(--radius-2xl);
  z-index: 1;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.about-photo-wrapper:hover .about-photo-decoration {
  top: 12px;
  left: 12px;
  opacity: 0.7;
}

/* Label de seção — componente reutilizável */
.about-label, .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(139, 90, 60, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: calc(-1 * var(--space-md));
  margin-bottom: var(--space-xl);
}

.about-content h2 {
  text-align: left;
  margin-bottom: var(--space-sm);
  font-size: 2.5rem;
}

.about-content h2::after {
  left: 0;
  transform: none;
}

.about-content p {
  text-align: left;
  margin: 0 0 var(--space-md) 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-primary) !important;
}

.about-lead strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Highlights — badges com ícone */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.about-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 90, 60, 0.06);
  border: 1px solid rgba(139, 90, 60, 0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.about-highlight svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.about-highlight:hover {
  background: rgba(139, 90, 60, 0.12);
  transform: translateY(-2px);
}

.about-cta-btn {
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .about-photo-wrapper {
    max-width: 260px;
    margin: 0 auto;
  }

  .about-content h2 { text-align: center; font-size: 2rem; }
  .about-content h2::after { left: 50%; transform: translateX(-50%); }
  .about-content p { text-align: center; }
  .about-highlights { justify-content: center; }
  .about-cta-btn { display: block; text-align: center; }
}

/* Fundo com imagem na seção sobre */
.about-section.has-bg {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: rgba(26, 15, 8, 0.2);
  background-blend-mode: multiply;
}

.about-section.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.55) 0%, rgba(212, 165, 116, 0.35) 45%, rgba(230, 200, 160, 0.25) 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.25);
}

.about-section.has-bg .container { position: relative; z-index: 1; }
.about-section.has-bg h2, .about-section.has-bg p { color: #fff; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); }

/* Services Section */
/* Services Section - Design Moderno */
.services-section {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-accent) 50%, var(--bg-tertiary) 100%);
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

/* Textura sutil (ruído suave em overlay) */
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
}

[data-theme="dark"] .services-section {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-accent) 50%, var(--bg-tertiary) 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(139, 90, 60, 0.03) 0%,
    transparent 70%
  );
  animation: rotate 60s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.services-section .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max, 1200px);
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-color); /* Fallback */
}

.services-section p.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

/* Services Carousel - Parallax */
.services-carousel { position: relative; }
.services-carousel::before,
.services-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 3;
}
.services-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-tertiary) 20%, transparent);
}
.services-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-tertiary) 20%, transparent);
}

/* Desktop: remover fades/setas/dots e usar grid 3 colunas */
@media (min-width: 1100px) {
  .services-carousel::before,
  .services-carousel::after { display: none; }
  .services-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2xl);
    overflow: visible;
    padding: var(--space-xl) 0;
  }
  .services-nav,
  .services-dots { display: none; }
  .service-card { flex: initial; max-width: 100%; }
}
.services-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-lg) var(--space-2xl) var(--space-xl);
}
.services-track::-webkit-scrollbar { height: 8px; }
.services-track::-webkit-scrollbar-thumb { background: rgba(139,90,60,.25); border-radius: 8px; }

.service-card {
  flex: 0 0 80%;
  max-width: 80%;
  scroll-snap-align: center;
  border-radius: 24px;
  background: var(--surface-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 90, 60, 0.10);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  overflow: hidden;
  transform: translateZ(0) scale(1);
  transition: transform var(--transition-spring), box-shadow 0.4s ease;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 40px rgba(139, 90, 60, 0.06);
}

@media (min-width: 768px) {
  .service-card { flex-basis: 46%; max-width: 46%; }
}
@media (min-width: 1100px) {
  /* 3 colunas mais compactas */
  .service-card { flex-basis: 30%; max-width: 30%; }
}

.service-media {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transform: translateY(0);
  transition: transform .4s ease;
}
@media (min-width: 1100px) {
  .service-media { height: 220px; }
}
.service-media::after {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.15) 100%);
}
.service-media-fallback { display:flex; align-items:center; justify-content:center; height:100%; font-size:42px; }
.overlay-icon, .service-index { display:none; }

.service-body { padding: var(--space-lg); }
.service-body h3 { font-size:1.1rem; margin:0 0 var(--space-xs) 0; color: var(--text-primary); }
.service-body p { color: var(--text-secondary); line-height:1.65; margin:0 0 var(--space-sm) 0; font-size:.98rem; }
.badge { display:inline-block; background: var(--primary-color); color:#fff; padding:.3rem .55rem; border-radius:999px; font-size:.8rem; }
.service-actions { display:flex; gap: var(--space-sm); align-items:center; }
.service-cta { display:inline-flex; align-items:center; justify-content:center; padding:.45rem .8rem; border-radius:8px; background: transparent; color: var(--primary-color); border:1px solid rgba(139,90,60,.35); text-decoration:none; font-weight:600; box-shadow:none; transition: background .2s ease, color .2s ease; }
.service-cta:hover { background: rgba(139,90,60,.08); color: var(--primary-dark); }

.services-nav { position:absolute; top:50%; transform:translateY(-50%); background: rgba(255,255,255,.9); color: var(--primary-dark); border:1px solid rgba(139,90,60,.2); width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; backdrop-filter: blur(8px); box-shadow:0 8px 24px rgba(0,0,0,.12); }
[data-theme="dark"] .services-nav { background: rgba(34,34,34,.85); color:#fff; }
.services-nav.prev { left: var(--space-xl); }
.services-nav.next { right: var(--space-xl); }
.services-nav:hover { transform: translateY(-50%) scale(1.06); }

/* Fim carousel */

/* Pagination Dots */
.services-dots { display:flex; gap:8px; justify-content:center; margin-top: var(--space-lg); }
.services-dot { width:8px; height:8px; border-radius:50%; background: rgba(139,90,60,.28); transition: transform .25s ease, background .25s ease; }
.services-dot.active { background: var(--primary-color); transform: scale(1.4); }

/* Service Card - Glassmorphism + Hover 3D */
.service {
  background: var(--surface-1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(0) perspective(800px) rotateX(0) rotateY(0);
  border: 1px solid rgba(139, 90, 60, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
  will-change: transform, box-shadow;
}

[data-theme="dark"] .service {
  background: var(--surface-1);
  border: 1px solid rgba(212, 165, 116, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 6px rgba(0, 0, 0, 0.2);
}

.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow interno no hover */
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 165, 116, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service:hover::after { opacity: 1; }

.service:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 0 60px rgba(139, 90, 60, 0.08);
  border-color: rgba(139, 90, 60, 0.2);
}

.service:hover::before { transform: scaleX(1); }

[data-theme="dark"] .service:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 165, 116, 0.08);
}

/* Service Icon - Design Moderno */
.service .icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  margin: 0 auto var(--space-lg);
  fill: none;
  stroke: var(--primary-color);
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.08), rgba(212, 165, 116, 0.12));
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service .icon-placeholder {
  width: 64px;
  height: 64px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(139, 90, 60, 0.1),
    rgba(212, 165, 116, 0.1)
  );
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service:hover .icon {
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.15), rgba(212, 165, 116, 0.2));
  transform: scale(1.1);
  stroke: var(--secondary-color);
}

.service:hover .icon-placeholder {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(139, 90, 60, 0.2),
    rgba(212, 165, 116, 0.2)
  );
  color: var(--secondary-color);
}

.service-image {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.service-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.2),
    0 0 0 8px rgba(139, 90, 60, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-image img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(139, 90, 60, 0.3),
    0 0 0 12px rgba(139, 90, 60, 0.15);
}

/* Service Title - Design Moderno */
.service h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.025em;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service:hover h3 {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
}

.service p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 var(--space-lg);
  font-weight: 400;
}

.service-number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.08;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.service:hover .service-number {
  opacity: 0.15;
}

.service-icon-wrap {
  margin-bottom: var(--space-md);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.service-link:hover {
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: var(--space-md);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.3);
  transition: var(--transition-normal);
}

.service:hover .service-duration {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 90, 60, 0.4);
}

.service-duration::before {
  content: "⏱️";
  font-size: 0.9rem;
}

/* Teletherapy Section */
.teletherapy-section {
  background: linear-gradient(
    180deg,
    var(--bg-warm) 0%,
    var(--bg-primary) 100%
  );
}

.teletherapy-section .container {
  max-width: 720px;
  text-align: center;
}

.teletherapy-section p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.teletherapy-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.teletherapy-icon svg {
  stroke: var(--primary-color);
  opacity: 0.6;
}

.teletherapy-features {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tele-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.tele-feature svg {
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.tele-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all var(--transition-spring);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.tele-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.tele-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 90, 60, 0.2);
}

/* Schedules Section */
.schedules-section {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 0;
}

.schedule-message {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.schedules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.schedule-day {
  background: var(--surface-1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 90, 60, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .schedule-day {
  background: var(--surface-1);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.schedule-day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.schedule-day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.day-name {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.day-hours {
  display: block;
  color: var(--text-secondary);
  font-size: 1rem;
  background: var(--accent-color);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.schedule-note {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--text-light);
}

.schedule-note small {
  font-size: 0.9rem;
  line-height: 1.5;
}

.teletherapy-section.has-bg {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: rgba(26, 15, 8, 0.2);
  background-blend-mode: multiply;
}

.teletherapy-section.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(139, 90, 60, 0.45) 0%,
    rgba(212, 165, 116, 0.3) 45%,
    rgba(230, 200, 160, 0.2) 100%
  );
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.2);
}

.teletherapy-section.has-bg .container {
  position: relative;
  z-index: 1;
}

.teletherapy-section.has-bg h2,
.teletherapy-section.has-bg p {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS — Grid moderna ===== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--surface-1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 90, 60, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-color: transparent;
  transform: scale(1.05);
}

.testimonial-card.featured blockquote,
.testimonial-card.featured .testimonial-author strong,
.testimonial-card.featured .testimonial-stars { color: white; }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.7); }
.testimonial-card.featured .testimonial-quote { color: rgba(255,255,255,0.2); }
.testimonial-card.featured .testimonial-avatar-placeholder { background: rgba(255,255,255,0.2); color: white; }

.testimonial-card:hover {
  box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 90, 60, 0.1);
}

.testimonial-quote {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--secondary-color);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: -1rem;
  user-select: none;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0 0 var(--space-lg) 0;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.1), rgba(212, 165, 116, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: var(--secondary-color);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .testimonial-card.featured { transform: none; }
}

/* Manter carousel antigo funcional (hidden se não usado) */
.carousel { display: none; }

/* ===== FAQ — Moderno, duas colunas ===== */
.faq-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 90, 60, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 90, 60, 0.2);
}

.faq-item[open] {
  background: white;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 90, 60, 0.06);
  border-color: var(--primary-light);
}

[data-theme="dark"] .faq-item {
  background: var(--surface-1);
  border: 1px solid rgba(212, 165, 116, 0.15);
}

[data-theme="dark"] .faq-item[open] {
  background: var(--surface-1);
  border-color: var(--primary-light);
}

.faq-item summary {
  padding: var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  list-style: none;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }

.faq-item summary:hover {
  background: rgba(139, 90, 60, 0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(139, 90, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary-color);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 12px; height: 2px;
}

.faq-icon::after {
  width: 2px; height: 12px;
}

.faq-item[open] .faq-icon {
  background: var(--primary-color);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: white;
}

.faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
}

.faq-item p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  animation: faqReveal 0.3s ease;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ===== CONTACT — Parallax + Premium ===== */
.contact-section {
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.contact-parallax-bg {
  position: absolute;
  inset: -20%;
  background: url('assets/images/psicVania.jpg') center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 32, 16, 0.92) 0%, rgba(139, 90, 60, 0.88) 50%, rgba(90, 53, 32, 0.94) 100%);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-section h2,
.contact-section p {
  color: white;
}

.contact-section h2 {
  font-size: 2.5rem;
}

.contact-section h2::after {
  background: rgba(255, 255, 255, 0.3);
}

.contact-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
}

.contact-cta-primary {
  background: white !important;
  color: var(--primary-dark) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.contact-cta-primary:hover {
  background: var(--bg-secondary) !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-cta-secondary {
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.contact-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: white !important;
  transform: translateY(-3px);
}

.registro {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-lg);
}

/* Footer */
/* Footer removido - usando versão mais completa abaixo */

/* WhatsApp Float com pulse */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-spring);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.2); }
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* Back to Top */
.to-top {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-spring);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  will-change: transform, opacity;
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(139, 90, 60, 0.2);
}

/* Scroll Progress — gradiente animado */
.scrollbar-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  animation: progress-shimmer 3s linear infinite;
  z-index: 1100;
  transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(139, 90, 60, 0.3);
}

@keyframes progress-shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ===== TILT 3D + INTERAÇÕES DINÂMICAS ===== */

/* Cards com tilt 3D */
.service,
.contact-card,
.testimonial {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Magnetic buttons */
.cta-button {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Texto que aparece com animação */
.section h2 {
  will-change: transform;
  transition: transform 0.1s linear;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

.section h2.text-animate {
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Parallax suave nos títulos */
.section h2 {
  transform-origin: center center;
}

/* Floating decorative dots */
.section {
  position: relative;
}

/* ===== ANIMAÇÕES DE REVEAL COM STAGGER ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger delay baseado em data-delay */
[data-reveal][data-delay="0"] { transition-delay: 0s; }
[data-reveal][data-delay="1"] { transition-delay: 0.12s; }
[data-reveal][data-delay="2"] { transition-delay: 0.24s; }
[data-reveal][data-delay="3"] { transition-delay: 0.36s; }
[data-reveal][data-delay="4"] { transition-delay: 0.48s; }
[data-reveal][data-delay="5"] { transition-delay: 0.6s; }

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger automático para filhos de containers */
.services-grid .service,
.contact-cards .contact-card,
.schedules-grid .schedule-day,
.teletherapy-features .tele-feature {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed .services-grid .service,
.revealed .contact-cards .contact-card,
.revealed .schedules-grid .schedule-day,
.revealed .teletherapy-features .tele-feature,
[data-reveal].revealed .services-grid .service,
[data-reveal].revealed .contact-cards .contact-card {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .service:nth-child(1),
.contact-cards .contact-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service:nth-child(2),
.contact-cards .contact-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service:nth-child(3),
.contact-cards .contact-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service:nth-child(4) { transition-delay: 0.4s; }

/* Floating animation contínua para ícones e elementos decorativos */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.teletherapy-icon {
  animation: gentle-float 4s ease-in-out infinite;
}

.contact-card-icon {
  transition: all var(--transition-spring);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }

  .navbar .container {
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
  }

  .nav-center {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(139, 90, 60, 0.1);
    backdrop-filter: blur(20px);
  }

  .navbar.scrolled .menu {
    top: 50px;
  }

  [data-theme="dark"] .menu {
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  }

  .menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-item {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .service {
    padding: var(--space-xl);
  }
  
  .services-section h2 {
    font-size: 2rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    padding: var(--space-xl);
    margin: var(--space-lg);
    margin-top: 0;
  }

  .hero::after {
    height: 40px;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .whatsapp-float,
  .to-top {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .hero h2 {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .hero p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* ===== NOVAS SEÇÕES ===== */

/* Módulo Personalizável */
.custom-module-section {
  background: linear-gradient(
    135deg,
    rgba(139, 90, 60, 0.1) 0%,
    rgba(212, 165, 116, 0.05) 100%
  );
  position: relative;
}

.custom-module-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  opacity: 0.3;
  z-index: -1;
}

.custom-module-content {
  background: var(--surface-1);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.custom-module-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== FALE COMIGO — Premium Cards ===== */
.map-section {
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-tertiary) 100%);
  position: relative;
}

.contact-cards-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-2xl) var(--space-xl);
  background: var(--surface-1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(139, 90, 60, 0.08);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.contact-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.contact-card-premium:hover::before {
  transform: scaleX(1);
}

.contact-card-premium:hover {
  box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 90, 60, 0.1);
  border-color: rgba(139, 90, 60, 0.2);
}

.card-premium-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.08), rgba(212, 165, 116, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.contact-card-premium:hover .card-premium-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: scale(1.1);
}

.contact-card-premium:hover .card-premium-icon svg {
  fill: white;
  stroke: white;
}

.card-premium-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-premium-content strong {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.card-premium-content span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.card-premium-cta {
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
  margin-top: var(--space-xs);
  transition: letter-spacing 0.3s ease;
}

.contact-card-premium:hover .card-premium-cta {
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .contact-cards-premium { grid-template-columns: 1fr; }
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-card-text strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card-text span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

[data-theme="dark"] .contact-card {
  background: var(--surface-1);
  border-color: rgba(212, 165, 116, 0.15);
}

/* Footer com Redes Sociais */
.footer {
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-accent) 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid rgba(139, 90, 60, 0.1);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.footer-logo {
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.footer-info {
  text-align: center;
}

.footer-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.footer-contacts {
  margin-top: var(--space-sm);
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.social-media-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.social-media-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-normal);
  border: 1px solid rgba(139, 90, 60, 0.1);
  backdrop-filter: blur(10px);
}

.social-media-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-icon {
  font-size: 1.2rem;
}

.social-name {
  font-weight: 500;
}

/* Social media links geradas dinamicamente */
.social-media-link.dynamic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  border: none;
}

.social-media-link.dynamic:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* Avatar do depoimento */
.testimonial-avatar {
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

/* Responsividade para novas seções */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .teletherapy-features {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .about-content p {
    text-align: center;
  }

  .about-cta {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
    padding: 0 var(--space-md);
  }

  .footer-info p {
    font-size: 0.85rem;
  }

  .footer-contacts {
    font-size: 0.8rem;
  }

  .social-media-links {
    justify-content: center;
    gap: var(--space-xs);
  }
  
  .schedules-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .schedule-day {
    padding: var(--space-md);
  }
  
  .day-name {
    font-size: 1rem;
  }
  
  .day-hours {
    font-size: 0.9rem;
  }

  .custom-module-content {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .map-info {
    padding: var(--space-lg);
  }

  .map-info h3 {
    font-size: 1.25rem;
  }

  .map-info p {
    font-size: 1rem;
  }

  .social-media-link {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
  }
}

/* Biosite /b */
.bio-page[hidden] {
  display: none !important;
}

.bio-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #3d2010;
  overflow-y: auto;
  position: relative;
}

/* Foto de fundo da bio page */
.bio-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('images/psicVania.jpg') center 20% / cover no-repeat;
  filter: blur(6px) brightness(0.5);
  transform: scale(1.1);
}

.bio-avatar-wrapper {
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.bio-card {
  width: 100%;
  max-width: 420px;
  background: transparent;
  border-radius: 24px;
  padding: 0 var(--space-lg) 0.5rem;
  text-align: center;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.bio-avatar {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  margin: 0 auto;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: var(--bg-primary);
}

.bio-name {
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bio-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #f5e6d3;
  margin-bottom: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.bio-tagline {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #f0e4d7;
  margin-bottom: 0.75rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.bio-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.bio-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.bio-social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.bio-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.bio-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.bio-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.bio-link:hover::before {
  left: 100%;
}

.bio-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.bio-link--primary {
  background: #ffffff;
  color: #4a2818;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.bio-link--primary:hover {
  background: #f5ebe0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
  color: #3d2010;
}

.bio-link--primary svg {
  display: none;
}

.bio-footer {
  font-size: 0.75rem;
  color: #f0e4d7;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
  .bio-card {
    padding: 0 var(--space-lg);
  }

  .bio-name {
    font-size: 1.65rem;
  }

  .bio-title {
    font-size: 0.85rem;
  }

  .bio-tagline {
    font-size: 0.9rem;
  }

  .bio-social {
    gap: var(--space-md);
  }

  .bio-social-icon {
    width: 36px;
    height: 36px;
  }

  .bio-link {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Profundidade visual — sombras internas sutis entre seções */
.about-section,
.services-section,
.teletherapy-section,
.testimonials-section,
.faq-section,
.map-section {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(139, 90, 60, 0.05);
}

[data-theme="dark"] .about-section,
[data-theme="dark"] .services-section,
[data-theme="dark"] .teletherapy-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .map-section {
  box-shadow: inset 0 1px 0 rgba(212, 165, 116, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}


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

  .particle,
  .orb,
  .hero-orbs { display: none; }

  .wave-divider svg { animation: none !important; }
  .section h2::after { animation: none !important; }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
