/* ═══════════════════════════════════════════════
   KAIO RAFAEL — PSICANALISTA
   CSS Principal · Estética Artística / Lacaniana
   ═══════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta */
  --bg:         #0d0b09;
  --bg-alt:     #111008;
  --surface:    #181510;
  --surface-2:  #201c14;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim:   #7a5f28;
  --cream:      #f0e8d5;
  --cream-dim:  #a89880;
  --white:      #faf8f3;
  --ink:        #2a2218;

  /* Tipografia */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-mono:   'Space Mono', 'Courier New', monospace;
  --font-fell:   'IM Fell English', Georgia, serif;

  /* Espaços */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1160px;

  /* Transições */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── Canvas ─── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── Cursor ─── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ─── Reveal Animations ─── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── Section Tags & Titles ─── */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-title.small {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease), color 0.3s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { color: var(--ink); }
.btn-primary span, .btn-primary { z-index: 1; }

.btn-primary.full {
  width: 100%;
  text-align: center;
}

.btn-ghost {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid var(--gold-dim);
  color: var(--cream-dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--cream);
}

/* ════════════════════════════════
   NAV
   ════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 60px);
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  padding: 14px clamp(20px, 5vw, 60px);
  background: rgba(13, 11, 9, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  cursor: default;
  user-select: none;
}

.logo-k {
  color: var(--gold);
  font-style: italic;
  font-size: 1.6rem;
}

.logo-rest {
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--surface);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  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.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px clamp(20px, 8vw, 120px) 100px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  transition-delay: 0.1s;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  font-size: clamp(3.2rem, 7vw, 7rem);
  transition-delay: 0.2s;
}

.hero-title .line.italic {
  font-style: italic;
  color: var(--gold-light);
  font-size: clamp(3.8rem, 8.5vw, 8.5rem);
  transition-delay: 0.3s;
}

.hero-title .line:last-child {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-family: var(--font-mono);
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  font-weight: 400;
  transition-delay: 0.4s;
  margin-top: 8px;
}

.hero-subtitle {
  font-family: var(--font-fell);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 48px;
  line-height: 1.6;
  transition-delay: 0.5s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  transition-delay: 0.6s;
}

/* Decorações do Hero */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.55);
}

.deco-circle.c1 {
  width: clamp(400px, 60vw, 900px);
  height: clamp(400px, 60vw, 900px);
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  animation: rotate-simple 60s linear infinite;
  transform-origin: center center;
  border-width: 1.5px;
  box-shadow: 0 0 40px rgba(201,168,76,0.08), inset 0 0 40px rgba(201,168,76,0.04);
}

.deco-circle.c2 {
  width: clamp(250px, 40vw, 600px);
  height: clamp(250px, 40vw, 600px);
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(201, 168, 76, 0.35);
  animation: rotate-simple-reverse 40s linear infinite;
  transform-origin: center center;
}

.deco-circle.c3 {
  width: clamp(120px, 18vw, 280px);
  height: clamp(120px, 18vw, 280px);
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(201, 168, 76, 0.7);
  border-width: 1px;
  animation: rotate-simple 25s linear infinite;
  transform-origin: center center;
}

.deco-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  width: 1px;
  opacity: 0.55;
}

.deco-line.l1 {
  right: 35%;
  top: 0; bottom: 0;
}

.deco-line.l2 {
  right: 20%;
  top: 20%; bottom: 20%;
  opacity: 0.3;
}

.deco-ink {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 500px);
  height: clamp(200px, 30vw, 500px);
  background: radial-gradient(ellipse at 40% 50%,
    rgba(201,168,76,0.18) 0%,
    rgba(201,168,76,0.06) 40%,
    transparent 70%);
  filter: blur(30px);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 8vw, 120px);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; height: 60px; }
  50%       { opacity: 1;   height: 80px; }
}

@keyframes rotate-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rotate-slow-reverse {
  from { transform: translateY(-50%) rotate(360deg); }
  to   { transform: translateY(-50%) rotate(0deg); }
}

@keyframes rotate-simple {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rotate-simple-reverse {
  from { transform: translateY(-50%) rotate(360deg); }
  to   { transform: translateY(-50%) rotate(0deg); }
}

/* ════════════════════════════════
   CITAÇÃO
   ════════════════════════════════ */
.quote-section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 60px);
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
}

/* SVG decorativo das citações */
.quote-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

@keyframes dash-flow {
  from { stroke-dashoffset: 600; }
  to   { stroke-dashoffset: 0; }
}

@keyframes arc-drift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-mark {
  display: block;
  font-family: var(--font-fell);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold-dim);
  margin-bottom: 24px;
  opacity: 0.6;
}

blockquote {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 20px;
}

cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
}

/* Variação citação alinhada à esquerda */
.quote-alt {
  background: var(--bg);
  border-color: rgba(201,168,76,0.08);
}

.quote-inner--left {
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.quote-inner--left .quote-mark {
  text-align: left;
  display: block;
}

.quote-inner--left blockquote {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
}

/* ════════════════════════════════
   SOBRE
   ════════════════════════════════ */
.sobre {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

/* Visual / Arte */
.sobre-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sobre-frame {
  width: 100%;
}

.sobre-frame {
  position: relative;
  width: 100%;
}

.frame-art {
  aspect-ratio: 3/4;
  max-height: 540px;
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-art::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
  z-index: 2;
}

/* Grafo lacaniano — imagem tratada */
.grafo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  filter: grayscale(1) invert(1) sepia(1) saturate(4) hue-rotate(5deg) brightness(0.7);
  opacity: 0.9;
  transition: opacity 0.6s ease;
}

.frame-art:hover .grafo-img {
  opacity: 1;
}

.grafo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.08) 0%,
    rgba(13,11,9,0.35) 70%,
    rgba(13,11,9,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes pulse-stroke {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.8; }
}

.art-circle-outer,
.art-circle-inner,
.art-glyph { display: none; }

.frame-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cream-dim);
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  opacity: 0.7;
}

/* Sobre texto */
.sobre-text {}

.sobre-text p {
  font-size: 1.05rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
  line-height: 1.85;
}

.sobre-text p strong {
  color: var(--cream);
  font-weight: 400;
}

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}

.tag:hover {
  background: var(--gold);
  color: var(--ink);
  cursor: default;
}

/* ════════════════════════════════
   ATENDIMENTO
   ════════════════════════════════ */
.atendimento {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px;
  margin-bottom: 80px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease);
  transition-delay: var(--delay, 0s);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.card p {
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.card-detail {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Art Divider */
.art-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 80px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.divider-symbol {
  font-family: var(--font-fell);
  font-size: 1.6rem;
  color: var(--gold-dim);
  opacity: 0.8;
}

/* Para quem */
.para-quem {}

.pq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 60px;
}

.pq-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pq-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 4px;
  flex-shrink: 0;
}

.pq-item p {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* ════════════════════════════════
   CONTATO
   ════════════════════════════════ */
.contato-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.contato-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contato-art {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  min-height: 320px;
  width: 100%;
}

.contato-svg {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
}

.contato {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

/* Arco aberto no canto direito da seção de contato */
.contato::before {
  content: '';
  position: absolute;
  width: clamp(300px, 45vw, 700px);
  height: clamp(300px, 45vw, 700px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.14);
  right: -15%;
  bottom: -20%;
  pointer-events: none;
  animation: rotate-quote 90s linear infinite;
}

.contato::after {
  content: '';
  position: absolute;
  width: clamp(180px, 26vw, 420px);
  height: clamp(180px, 26vw, 420px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.28);
  right: -4%;
  bottom: -10%;
  pointer-events: none;
  animation: rotate-quote 50s linear infinite reverse;
}

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contato-info p {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 36px;
  line-height: 1.8;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  margin-bottom: 48px;
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.6);
}

.wa-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

.contato-detalhes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detalhe {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.detalhe:last-child { border-bottom: none; }

.detalhe-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.detalhe-val {
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* Formulário */
.contato-form-wrap {
  position: relative;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 152, 128, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-note {
  font-size: 0.82rem;
  color: rgba(168,152,128,0.5);
  text-align: center;
  margin-top: -8px;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.2);
}

.form-success.visible { display: block; }

.success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: spin-star 4s linear infinite;
}

@keyframes spin-star {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.form-success p {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.6;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 32px;
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-name {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  line-height: 1;
}

.footer-brand > span {
  white-space: nowrap;
}

.footer-brand p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0.6;
}

.footer-nav a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(168,152,128,0.4);
  text-transform: uppercase;
}

.footer-glyph {
  font-family: var(--font-fell);
  font-size: 1.5rem !important;
  color: var(--gold-dim) !important;
  opacity: 0.5 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ════════════════════════════════
   RESPONSIVO
   ════════════════════════════════ */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .sobre-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .sobre-visual {
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    transform: none !important;
  }

  .sobre-visual.visible {
    transform: none !important;
  }

  .sobre-frame {
    width: 90%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .frame-art {
    max-height: 380px;
    aspect-ratio: 1/1;
    width: 100%;
    margin: 0 auto;
  }

  .grafo-img {
    object-fit: contain;
    padding: 4px;
  }

  .pq-grid {
    grid-template-columns: 1fr;
  }

  .contato-layout {
    grid-template-columns: 1fr;
  }

  .contato-single {
    grid-template-columns: 1fr;
  }

  .contato-art {
    display: none;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    padding: 120px 24px 80px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary, .btn-ghost {
    text-align: center;
  }

  .hero-title .line {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .hero-title .line.italic {
    font-size: clamp(3.2rem, 14vw, 6rem);
  }

  .hero-title .line:last-child {
    font-size: clamp(0.9rem, 3.5vw, 1.4rem);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
