:root {
  color-scheme: dark;
  --bg: #060816;
  --card: rgba(6, 8, 22, 0.78);
  --text: #fdf7ff;
  --muted: #e7d8f5;
  --accent: #f6c96d;
  --accent-2: #d96f9f;
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
}

/* Background e Vídeo */
.background-video { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; filter: brightness(0.35) saturate(0.9); }
.video-overlay { position: fixed; inset: 0; background: linear-gradient(135deg, rgba(6, 8, 22, 0.72), rgba(6, 8, 22, 0.4)); z-index: 1; pointer-events: none; }
.background-fallback { position: fixed; inset: 0; z-index: -1; background: radial-gradient(circle at top, #6d2f42 0%, #120b1f 45%, #03040b 100%); }

.container { position: relative; z-index: 2; min-height: 100vh; display: grid; place-items: center; padding: 24px; }

.card {
  width: min(100%, 520px);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.4);
  position: relative;
  overflow: hidden;
}

/* Elementos de decoração */
.card::before { content: ""; position: absolute; inset: -30% 10% auto auto; width: 220px; height: 220px; background: radial-gradient(circle, rgba(246, 201, 109, 0.28) 0%, rgba(246, 201, 109, 0) 70%); filter: blur(10px); pointer-events: none; }
.card::after { content: ""; position: absolute; inset: auto auto -20% -10%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(217, 111, 159, 0.24) 0%, rgba(217, 111, 159, 0) 70%); filter: blur(8px); pointer-events: none; }

/* Perfil */
.profile { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.logo-frame { width: 74px; height: 74px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(246, 201, 109, 0.36); flex-shrink: 0; }
.logo-video { width: 100%; height: 100%; object-fit: cover; }

.eyebrow { margin: 0 0 4px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); }

/* H1 - Título com estilo luxo */
h1 {
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fceabb 0%, #f8d800 25%, #e7a73c 50%, #d4af37 75%, #a67c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* BIO - Descrição em itálico elegante */
.bio { 
  margin: 0; 
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #f0f8ff; 
  line-height: 1.4; 
  font-size: 1.1rem; 
  font-weight: 400; 
}

/* AJUSTE DO LAYOUT */
.content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 24px;
}

.social-panel { flex: 1; display: flex; flex-direction: column; }
.social-title { margin: 0 0 12px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.social-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.social-link { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,0.05); transition: 0.3s; }
.social-link img { width: 30px; }
.social-link:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }

.photo-side { display: flex; justify-content: flex-end; }
.rebeca-photo { width: 150px; aspect-ratio: 3/4; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); }

@media (max-width: 480px) {
  .content-row { flex-direction: column-reverse; align-items: center; }
  .social-links { grid-template-columns: repeat(4, 1fr); }
}