/*
Theme Name: Paulo Albuquerque — Fênix
Theme URI: https://www.paulorpalbuquerque.com.br
Author: Paulo Albuquerque / Incanto Marketing
Description: Site pessoal de Paulo Albuquerque. Dark Luxury em Movimento. Identidade visual baseada na logo Fênix — dourado, preto, Cinzel.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: paulo-fenix
*/

/* ============================================================
   DESIGN SYSTEM — PAULO ALBUQUERQUE FÊNIX
   Direção: Dark Luxury em Movimento
   Paleta: #C19630 · #E0C365 · #000001 · #FFFFFF
   Tipografia: Cinzel (display) + DM Sans (corpo)
   Conceito: Águia em voo — ascensão, fluidez, vida
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ---- TOKENS ---- */
:root {
  /* Cores oficiais da logo */
  --gold:          #C19630;
  --gold-light:    #E0C365;
  --gold-muted:    #8a6a20;
  --gold-grad:     linear-gradient(135deg, #C19630 0%, #E0C365 50%, #C19630 100%);
  --gold-grad-h:   linear-gradient(135deg, #E0C365 0%, #C19630 50%, #E0C365 100%);
  --black:         #000001;
  --black-soft:    #0a0a0a;
  --black-card:    #111111;
  --black-border:  #1e1e1e;
  --white:         #FFFFFF;
  --off-white:     #F0EDE6;
  --gray:          #888888;
  --gray-dark:     #444444;

  /* Tipografia */
  --font-display:  'Cinzel', 'Times New Roman', serif;
  --font-body:     'DM Sans', sans-serif;

  /* Espaços */
  --max-w:         1200px;
  --section-v:     110px;
  --radius:        2px;

  /* Animações */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --duration:      0.45s;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITÁRIOS ---- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.gold       { color: var(--gold-light); }
.gold-grad  { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- TIPOGRAFIA ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1.05rem; line-height: 1.85; color: rgba(240,237,230,0.78); }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.label::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold-grad);
  flex-shrink: 0;
}

/* ---- LINHA DOURADA ---- */
.gold-rule {
  width: 56px; height: 2px;
  background: var(--gold-grad);
  margin: 20px 0 32px;
  border-radius: 1px;
}
.gold-rule.center { margin: 20px auto 32px; }

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 8px 32px rgba(193,150,48,0.3);
}
.btn-gold:hover {
  background: var(--gold-grad-h);
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(193,150,48,0.45);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(193,150,48,0.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---- SHIMMER EFFECT ---- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 30%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 28px;
  transition: all var(--duration) var(--ease);
}
#navbar.scrolled {
  background: rgba(0,0,1,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(193,150,48,0.12);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo-text em {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.65);
  transition: all var(--duration) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--off-white);
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,1,0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.08em;
  transition: all var(--duration) var(--ease);
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ============================================================
   HERO — HOME
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Background animado */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-glow-1 {
  position: absolute;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,150,48,0.08) 0%, transparent 65%);
  top: -20%; right: -20%;
  animation: float1 12s ease-in-out infinite;
}
.hero-bg-glow-2 {
  position: absolute;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,195,101,0.05) 0%, transparent 65%);
  bottom: -10%; left: -10%;
  animation: float2 16s ease-in-out infinite;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193,150,48,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193,150,48,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-3%, 5%) scale(1.05); }
  66%  { transform: translate(4%, -3%) scale(0.97); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(4%, -6%) scale(1.08); }
  70%  { transform: translate(-2%, 4%) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content {}

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-grad);
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 {
  display: block;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s 1.2s linear infinite;
  background-size: 200% auto;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid rgba(193,150,48,0.15);
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease) forwards;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Hero foto */
.hero-photo {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s var(--ease) forwards;
}
.hero-photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gold-grad);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.6;
}
.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.9);
  display: block;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,1,0.7) 100%);
  pointer-events: none;
}

/* Badge credencial */
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--black-card);
  border: 1px solid rgba(193,150,48,0.3);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.hero-badge img { height: 28px; width: auto; margin: 0 auto 6px; }
.hero-badge span {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Partículas flutuantes */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(var(--dx, 20px)); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   BARRA DE CREDENCIAIS
============================================================ */
#credbar {
  background: rgba(193,150,48,0.06);
  border-top: 1px solid rgba(193,150,48,0.12);
  border-bottom: 1px solid rgba(193,150,48,0.12);
  padding: 20px 28px;
  overflow: hidden;
}
.credbar-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: scrollTrack 30s linear infinite;
  white-space: nowrap;
}
.credbar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}
.credbar-item::before {
  content: '✦';
  font-size: 0.5rem;
  color: var(--gold-light);
}
@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SOBRE — HOME
============================================================ */
#sobre {
  padding: var(--section-v) 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: 'PAULO';
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193,150,48,0.04);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-wrap { position: relative; }
.sobre-img-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.sobre-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.85);
}
.sobre-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,150,48,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.sobre-img-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold-grad);
  color: var(--black);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  border-radius: var(--radius);
  text-align: center;
  max-width: 160px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.sobre-text {}
.sobre-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin: 28px 0;
  font-style: italic;
}
.sobre-text p { margin-bottom: 18px; }

/* Credenciais */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.cred-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--duration) var(--ease);
}
.cred-card:hover {
  border-color: rgba(193,150,48,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cred-icon { font-size: 1.3rem; line-height: 1; margin-top: 2px; flex-shrink: 0; }
.cred-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.3;
}
.cred-desc { font-size: 0.76rem; color: var(--gray); line-height: 1.4; }

/* ============================================================
   NÚMEROS — HOME
============================================================ */
#numeros {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.numero-item {
  background: var(--black-card);
  padding: 44px 32px;
  text-align: center;
  transition: background var(--duration) var(--ease);
}
.numero-item:hover { background: var(--black-soft); }
.numero-val {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}
.numero-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ============================================================
   UNIVERSOS — HOME (3 territórios)
============================================================ */
#universos {
  padding: var(--section-v) 0;
  background: var(--black-soft);
  position: relative;
}

.universos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.universos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.universo-card {
  position: relative;
  background: var(--black-card);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.universo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.universo-card:hover::before { transform: scaleX(1); }
.universo-card:hover { background: var(--black-soft); }

.universo-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.05);
  transition: filter var(--duration) var(--ease), transform 0.6s var(--ease);
}
.universo-card:hover .universo-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.03);
}

.universo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,1,0.85) 100%);
  pointer-events: none;
}

.universo-body {
  position: relative;
  padding: 28px 32px 36px;
}
.universo-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.universo-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.universo-desc {
  font-size: 0.9rem;
  color: rgba(240,237,230,0.65);
  margin-bottom: 24px;
  line-height: 1.7;
}
.universo-dores {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.universo-dor {
  font-size: 0.82rem;
  color: rgba(240,237,230,0.55);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.universo-dor::before {
  content: '—';
  color: var(--gold-muted);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 2px;
}
.universo-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--duration) var(--ease), color var(--duration) var(--ease);
}
.universo-card:hover .universo-link { gap: 14px; color: var(--gold-light); }
.universo-link::after { content: '→'; }

/* ============================================================
   PROVA SOCIAL — HOME
============================================================ */
#depoimentos {
  padding: var(--section-v) 0;
  background: var(--black);
}
.depo-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.depo-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: all var(--duration) var(--ease);
}
.depo-card:hover {
  border-color: rgba(193,150,48,0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.depo-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 20px; right: 24px;
  pointer-events: none;
}
.depo-text {
  font-size: 0.95rem;
  line-height: 1.85;
  font-style: italic;
  color: rgba(240,237,230,0.82);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--black-border);
}
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.depo-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.depo-role { font-size: 0.76rem; color: var(--gray); margin-top: 2px; }

/* ============================================================
   CONTEÚDO — HOME
============================================================ */
#conteudo {
  padding: var(--section-v) 0;
  background: var(--black-soft);
  text-align: center;
}
.conteudo-header { max-width: 560px; margin: 0 auto 56px; }

.conteudo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}
.conteudo-item {
  aspect-ratio: 1;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.conteudo-item:hover { border-color: rgba(193,150,48,0.2); }
.conteudo-item .icon {
  font-size: 2.4rem;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.conteudo-item:hover .icon { transform: translate(-50%,-60%); opacity: 0.4; }
.conteudo-item .text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,1,0.9) 0%, transparent 100%);
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--off-white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
}
.conteudo-item:hover .text { opacity: 1; transform: translateY(0); }

/* ============================================================
   CTA FINAL — HOME
============================================================ */
#cta-home {
  padding: var(--section-v) 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(193,150,48,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-home-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-home-inner h2 { margin: 16px 0; }
.cta-home-inner p  { margin-bottom: 44px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 64px 28px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-text em {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.footer-tagline { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  transition: all var(--duration) var(--ease);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: all var(--duration) var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(136,136,136,0.6);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 990;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(37,211,102,0.6);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 48px rgba(37,211,102,0.65); }
}

/* ============================================================
   PÁGINAS INTERNAS — HEADER
============================================================ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 160px 28px 100px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%) brightness(0.25);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,1,0.9) 0%, rgba(193,150,48,0.05) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   SEÇÃO DE DORES
============================================================ */
.dores-section {
  padding: var(--section-v) 0;
  background: var(--black-soft);
}
.dores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.dor-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.dor-card::before {
  content: '"';
  position: absolute;
  top: 8px; right: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
}
.dor-card:hover {
  border-color: rgba(193,150,48,0.2);
  transform: translateY(-3px);
}
.dor-text {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(240,237,230,0.75);
  line-height: 1.7;
}

/* ============================================================
   BLOCO DE AUTORIDADE
============================================================ */
.autoridade-section {
  padding: var(--section-v) 0;
  background: var(--black);
}
.autoridade-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.autoridade-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.autoridade-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.88);
}
.autoridade-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,150,48,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   CARDS DE APRENDIZADO (não produto)
============================================================ */
.aprenda-section {
  padding: var(--section-v) 0;
  background: var(--black-soft);
}
.aprenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.aprenda-card {
  background: var(--black-card);
  padding: 40px 32px;
  transition: background var(--duration) var(--ease);
}
.aprenda-card:hover { background: var(--black-soft); }
.aprenda-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193,150,48,0.2);
  line-height: 1;
  margin-bottom: 20px;
  transition: -webkit-text-stroke var(--duration) var(--ease);
}
.aprenda-card:hover .aprenda-num { -webkit-text-stroke-color: rgba(193,150,48,0.5); }
.aprenda-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.aprenda-card p  { font-size: 0.9rem; }

/* ============================================================
   CARD DE CONTEÚDO (vínculo Hotmart — não "compre")
============================================================ */
.conteudo-cards-section {
  padding: var(--section-v) 0;
  background: var(--black);
}
.conteudo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.conteudo-prod-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.conteudo-prod-card:hover {
  border-color: rgba(193,150,48,0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.conteudo-prod-card-top {
  padding: 36px 28px 28px;
}
.conteudo-prod-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.conteudo-prod-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.conteudo-prod-card p  { font-size: 0.9rem; margin-bottom: 20px; }
.conteudo-prod-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.conteudo-prod-item {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(240,237,230,0.7);
  align-items: flex-start;
}
.conteudo-prod-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.conteudo-prod-card-bottom {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--black-border);
}
.conteudo-prod-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--duration) var(--ease);
}
.conteudo-prod-link::after { content: '→'; transition: transform var(--duration) var(--ease); }
.conteudo-prod-card:hover .conteudo-prod-link { color: var(--gold-light); }
.conteudo-prod-card:hover .conteudo-prod-link::after { transform: translateX(4px); }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-photo         { display: none; }
  .sobre-inner        { grid-template-columns: 1fr; }
  .sobre-img-wrap     { display: none; }
  .numeros-grid       { grid-template-columns: repeat(2, 1fr); }
  .universos-grid     { grid-template-columns: 1fr; }
  .depo-grid          { grid-template-columns: 1fr; }
  .conteudo-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .autoridade-inner   { grid-template-columns: 1fr; }
  .aprenda-grid       { grid-template-columns: 1fr; }
  .conteudo-cards-grid { grid-template-columns: 1fr; }
  .cred-grid          { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger      { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-v: 72px; }
  .numeros-grid  { grid-template-columns: 1fr 1fr; }
  .dores-grid    { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .hero-stats    { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
