/* ═══════════════════════════════════════════════════════════════
   Art direction: clínica de estética premium, Brasília DF
   Palette: champagne / rosé gold (#D4B79A) + neutros quentes
   Typography: Cormorant Garamond (display) + Jost (body)
   Density: espaçosa — transmite sofisticação e leveza
═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Cores principais */
  --gold:           #D4B79A;
  --gold-dark:      #b8936a;
  --gold-light:     #ede0d3;
  --gold-highlight: #f7f0e8;

  /* Superfícies */
  --color-bg:        #fdfaf7;
  --color-surface:   #f9f4ef;
  --color-surface-2: #f3ece4;
  --color-border:    rgba(212,183,154,0.3);

  /* Texto */
  --color-text:       #2a201a;
  --color-text-muted: #7a6b5e;
  --color-text-faint: #b5a89a;
  --color-text-inv:   #fdfaf7;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Escala de texto */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-hero: clamp(3rem,     1rem    + 5vw,    5.5rem);

  /* Espaçamento */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Bordas e sombras */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(42,32,26,0.06);
  --shadow-md: 0 6px 20px rgba(42,32,26,0.09);
  --shadow-lg: 0 16px 48px rgba(42,32,26,0.12);

  --transition: 200ms cubic-bezier(0.16,1,0.3,1);

  /* Larguras */
  --content: 1100px;
}

/* ─── Base Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.2; }
p { text-wrap: pretty; max-width: 68ch; }
button { cursor: pointer; background: none; border: none; }
a, button, [role="button"] {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition), opacity var(--transition);
}
::selection { background: rgba(212,183,154,0.3); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

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

/* ─── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,247,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.brand-l {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-l.small { font-size: 1.4rem; }
.brand-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.nav { display: flex; gap: var(--space-6); }
.nav-link {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.nav-link:hover { color: var(--gold-dark); }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--gold);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.btn-whatsapp-header:hover {
  background: var(--gold-dark);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--gold-highlight) 0%, var(--color-surface) 60%, var(--color-surface-2) 100%);
  padding-top: 72px;
  overflow: hidden;
}

/* Decoração sutil de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,183,154,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vmax;
  height: 40vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,183,154,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-4) var(--space-6);
}

.hero-welcome {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.hero-logo { position: relative; }


.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 42ch;
  margin-top: var(--space-1);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-2);
}

/* Scroll hint */
.hero-scroll-hint {
  margin-top: var(--space-4);
  display: flex;
  justify-content: center;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ─── Botões ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--color-text);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 8px 24px rgba(184,147,106,0.35);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-highlight);
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — base
═══════════════════════════════════════════════════════════════ */
.section {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.section-alt {
  background: var(--color-surface);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.section-title.center { text-align: center; }
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

/* ═══════════════════════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════════════════════ */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.section-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.profile-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  text-align: center;
  box-shadow: var(--shadow-md);
}
.profile-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-highlight);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}
.profile-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.profile-title {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-4);
}
.profile-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 100%;
}
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gold-dark);
  background: var(--gold-highlight);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   PROCEDIMENTOS
═══════════════════════════════════════════════════════════════ */
.procedures-cta {
  text-align: center;
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.procedures-cta p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   CONTATO
═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px,100%), 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--gold-dark);
}
.contact-icon i { width: 22px; height: 22px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.contact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* Botões sociais */
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  min-width: 180px;
  justify-content: center;
}
.social-whatsapp {
  background: #25D366;
  color: #fff;
}
.social-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transform: translateY(-2px);
}
.social-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.social-instagram:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(220,39,67,0.3);
  transform: translateY(-2px);
}
.social-btn:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-8);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 100%;
  text-align: right;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { display: none; }
  .section-grid { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-copy { text-align: center; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .social-btn { min-width: unset; width: 100%; max-width: 320px; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCEDIMENTOS — categorias
═══════════════════════════════════════════════════════════════ */
.proc-category {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  margin-bottom: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}
.proc-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.proc-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.proc-category-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-highlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.proc-category-icon i { width: 20px; height: 20px; }

.proc-category-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.proc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: var(--space-3) var(--space-6);
}

.proc-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
}
.proc-item i {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.proc-item span {
  line-height: 1.4;
}

/* ─── Logo SVG Hero ──────────────────────────────────────────── */
.lumina-logo-svg {
  width: clamp(300px, 78vw, 520px);
  height: auto;
  display: block;
  margin: calc(-1 * var(--space-2)) auto;
  filter: drop-shadow(0 6px 28px rgba(184,147,106,0.25));
  transition: filter var(--transition), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  animation: logoFadeIn 1.2s cubic-bezier(0.22,1,0.36,1) both;
}
.lumina-logo-svg:hover {
  filter: drop-shadow(0 12px 40px rgba(184,147,106,0.38));
  transform: scale(1.02);
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
