/* ============================================================
   main.css — Design Tokens, Reset Global e Utilitários Base
   Dra. Camila Insuela — v2.0
   ============================================================ */

/* ========== DESIGN TOKENS ========== */
:root {
  /* Cores */
  --cream:       #FCFAFD;
  --cream-deep:  #F3EEF5;
  --rose:        #D078C3;
  --rose-soft:   #E8AEDB;
  --blush:       #A064B5;
  --wine:        #B083C6;
  --wine-deep:   #8A649C;
  --ink:         #1C1524;
  --muted:       #74677A;
  --line:        rgba(74, 26, 37, 0.12);

  /* Sombras */
  --shadow-sm:   0 2px 14px rgba(74, 26, 37, 0.06);
  --shadow-md:   0 16px 48px rgba(74, 26, 37, 0.10);
  --shadow-lg:   0 32px 80px rgba(74, 26, 37, 0.14);

  /* Tipografia */
  --display:     'Fraunces', 'Times New Roman', serif;
  --body:        'Manrope', system-ui, sans-serif;

  /* Raio de borda */
  --radius:      28px;
  --radius-sm:   14px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: rgba(252, 250, 253, 0.4);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Textura pontilhada sutil sobre o fundo */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle 0.8px, rgba(110, 48, 88, 0.04) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

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

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

/* ========== LAYOUT ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  z-index: 10;
}

/* ========== TIPOGRAFIA ========== */
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.1;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--wine);
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--wine);
}

.section-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ========== GLASSMORPHISM HELPER ========== */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
}
