/*
 * Dra. Quilma Leite — /psicoterapia-osasco
 * CSS estático (sem build step, sem Tailwind em runtime).
 * Contém apenas as classes utilitárias/tokens realmente usados nesta página,
 * traduzidos manualmente a partir do design system original (Lovable/Tailwind v4).
 * Fonte: C:\xampp\htdocs\projetos\devtower\Q\Quilma Leite\dra-quilmaleite\src\styles.css
 */

/* ===== Tokens (tema "eleve" + variação "lilac" usada nesta página) ===== */
:root {
  --background: oklch(0.989 0.002 80);
  --foreground: oklch(0.22 0.04 290);
  --card: oklch(1 0 0);
  --muted-foreground: oklch(0.45 0.02 285);
  --border: oklch(0.9 0.01 80);
}

.theme-eleve.theme-lilac {
  --eleve-petroleo: oklch(0.5 0.13 305);
  --eleve-petroleo-deep: oklch(0.36 0.14 305);
  --eleve-petroleo-soft: oklch(0.66 0.1 305);
  --eleve-cream: oklch(0.975 0.012 305);
  --primary: oklch(0.5 0.13 305);
  --border: oklch(0.9 0.015 305);
  --shadow-eleve-cta: 0 14px 32px -12px oklch(0.5 0.13 305 / 0.4);
  --shadow-eleve-card: 0 4px 24px -10px oklch(0.5 0.13 305 / 0.14);
  --gradient-eleve-cta: linear-gradient(135deg, oklch(0.5 0.13 305) 0%, oklch(0.36 0.14 305) 100%);
  font-family: "Inter", system-ui, sans-serif;
}

/* ===== Reset mínimo ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; }

html { scroll-behavior: auto; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--eleve-petroleo);
}

/* ===== Componentes ===== */
.container-prose {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.eyebrow-eleve {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eleve-petroleo);
  font-weight: 600;
  opacity: 0.8;
}

.card-eleve {
  background: var(--card);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-eleve-card);
  border: 1px solid color-mix(in oklab, var(--eleve-petroleo) 8%, transparent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-eleve:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -16px oklch(0.5 0.13 305 / 0.25);
}

.section-pad {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.pt-14 { padding-top: 3.5rem; }
.pb-hero { padding-bottom: clamp(4rem, 8vw, 7rem); }

/* ===== Utilitários de layout ===== */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.isolate { isolation: isolate; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.-z-10 { z-index: -10; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-12 { gap: 3rem; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-auto { width: auto; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white { color: #fff; }
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-border { border-color: var(--border); }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

.opacity-80 { opacity: 0.8; }

.transition { transition-property: color, background-color, border-color, box-shadow, transform, filter; transition-duration: 0.25s; transition-timing-function: ease; }
.duration-300 { transition-duration: 0.3s; }

.cursor-pointer { cursor: pointer; }
.list-none { list-style: none; }

/* Espaçamentos (escala Tailwind: 1 = 0.25rem) */
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-auto { margin-top: auto; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Tamanhos "size-*" (ícones/avatares quadrados) */
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-9 { width: 2.25rem; height: 2.25rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-11 { width: 2.75rem; height: 2.75rem; }
.size-14 { width: 3.5rem; height: 3.5rem; }

.h-20 { height: 5rem; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.top-6 { top: 1.5rem; }

.object-cover { object-fit: cover; }
.object-hero { object-position: 70% center; }

/* Tracking (letter-spacing) usados na página */
.tracking-\[0\.12em\] { letter-spacing: 0.12em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.28em\] { letter-spacing: 0.28em; }

/* Tamanhos de fonte fluidos (arbitrary values do Tailwind original) */
.text-h1 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); line-height: 1.05; }
.text-h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.25; }
.text-15 { font-size: 15px; }
.text-11 { font-size: 11px; }

/* Aspect ratios usados */
.aspect-hero-card { aspect-ratio: 16 / 10; }
.aspect-portrait { aspect-ratio: 4 / 5; }

.rounded-hero-photo { border-radius: 2rem; }
.rounded-cta { border-radius: 2.2rem; }

/* Ícones dentro de círculos coloridos (bg do primary a 10%) */
.icon-badge {
  background: color-mix(in oklab, var(--eleve-petroleo) 10%, transparent);
  color: var(--eleve-petroleo);
}

/* ===== Botões / CTAs ===== */
.btn-cta {
  background: var(--eleve-petroleo);
  color: var(--eleve-cream);
  box-shadow: var(--shadow-eleve-cta);
}
.btn-cta:hover { transform: translateY(-2px); }

.btn-cta-outline-note {
  color: var(--eleve-petroleo-deep);
}

/* ===== Hero ===== */
.hero {
  min-height: 82vh;
  overflow: hidden;
}
.hero-bg {
  background: linear-gradient(
    105deg,
    oklch(0.97 0.025 305 / 0.96) 0%,
    oklch(0.97 0.025 305 / 0.86) 38%,
    oklch(0.97 0.025 305 / 0.4) 62%,
    transparent 88%
  );
}
.hero-eyebrow,
.eyebrow-plain {
  color: var(--eleve-petroleo-deep);
}
.hero-title,
.heading-deep {
  color: var(--eleve-petroleo-deep);
}

/* ===== FAQ (accordion nativo <details>) ===== */
.faq-item {
  background: var(--card);
}
.faq-item[open] {
  box-shadow: var(--shadow-eleve-card);
}
.faq-item summary { outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

/* ===== CTA final ===== */
.cta-final-box {
  background: var(--eleve-cream);
  color: var(--eleve-petroleo-deep);
  border: 1px solid color-mix(in oklab, var(--eleve-petroleo) 14%, transparent);
  box-shadow: var(--shadow-eleve-card);
}

/* ===== Consultório / Modalidades / seções com fundo creme ===== */
.bg-eleve-cream { background: var(--eleve-cream); }
.address-card {
  background: var(--eleve-cream);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--eleve-cream);
  border-top: 1px solid var(--border);
}

/* ===== WhatsApp float ===== */
.wa-float {
  background-color: #25d366;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

@keyframes wa-float-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes wa-float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-wa-float {
  animation: wa-float-pulse 2.5s ease-in-out infinite, wa-float-bounce 3s ease-in-out infinite;
}

/* ===== Depoimentos ===== */
.avatar-badge {
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  color: var(--primary);
}
.stars {
  color: #fbbc05;
  letter-spacing: 0.1em;
}

/* ===== Elementos avulsos usados em vários pontos da página ===== */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--eleve-petroleo);
  font-weight: 700;
}
.step-number {
  color: color-mix(in oklab, var(--eleve-petroleo) 25%, transparent);
}
.heading-primary {
  color: var(--eleve-petroleo);
}
.eyebrow-soft {
  color: var(--eleve-petroleo-soft);
}
.card-shadow {
  box-shadow: var(--shadow-eleve-card);
}

/* ===== Responsivo (breakpoint md = 768px, lg = 1024px) ===== */
@media (min-width: 768px) {
  .md\:min-h-\[88vh\] { min-height: 88vh; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:h-24 { height: 6rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-center { text-align: center; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:grid-cols-quemsoueu { grid-template-columns: 0.85fr 1.15fr; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:object-hero { object-position: right center; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== Hover (dispositivos com ponteiro) ===== */
@media (hover: hover) {
  .hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
  .hover\:underline:hover { text-decoration: underline; }
}
