/* ================================================
   LUZ VIOLETA — Premium Esoteric Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --black:        #060608;
  --deep:         #0d0b14;
  --dark:         #12101c;
  --card-bg:      rgba(20, 16, 35, 0.85);
  --purple-deep:  #2d1b6e;
  --purple:       #7b2fbe;
  --purple-mid:   #9d4edd;
  --purple-light: #c77dff;
  --purple-glow:  #e0aaff;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-bright:  #ffd700;
  --text:         #e8e0f5;
  --text-muted:   #9d8ec4;
  --border:       rgba(155, 80, 220, 0.25);
  --glow-purple:  0 0 40px rgba(155, 80, 220, 0.4);
  --glow-gold:    0 0 30px rgba(201, 168, 76, 0.5);
  --gradient-hero: linear-gradient(135deg, #060608 0%, #0d0a1a 40%, #1a0a2e 70%, #0d0b14 100%);
  --gradient-card: linear-gradient(135deg, rgba(30,20,55,0.9), rgba(15,10,30,0.95));
  --gradient-gold: linear-gradient(90deg, #c9a84c, #ffd700, #c9a84c);
  --transition:   all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

.admin-body { cursor: auto; }
.admin-body * { cursor: auto; }
.admin-body a,
.admin-body button,
.admin-body label,
.admin-body select,
.admin-body input[type="file"],
.admin-body .admin-nav a { cursor: pointer; }
.admin-body input,
.admin-body textarea { cursor: text; }

/* ── Custom Cursor ── */
#cursor {
  width: 12px; height: 12px;
  background: var(--purple-light);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor-trail {
  width: 36px; height: 36px;
  border: 1px solid rgba(199, 125, 255, 0.5);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 20px; height: 20px; background: var(--gold); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-mid); }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h4, h5, h6 { font-family: 'Raleway', sans-serif; letter-spacing: 0.04em; }

.cinzel-deco { font-family: 'Cinzel Decorative', serif; }
.inter { font-family: 'Raleway', sans-serif; }

a { color: var(--purple-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

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

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 7rem 0; }

/* ── Particle Canvas ── */
#stars-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: 0.7;
}

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 2rem;
  transition: var(--transition);
  background: rgba(3, 2, 6, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(123, 47, 190, 0.15);
}
.navbar.scrolled {
  background: rgba(3, 2, 6, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: auto;
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: screen;
  transition: var(--transition);
  filter: brightness(1.15) saturate(1.2);
}
.nav-logo:hover .nav-logo-img {
  filter: brightness(1.4) saturate(1.4);
  transform: scale(1.1);
}
.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible; /* permite conteúdo fluir para próxima seção */
  background: var(--gradient-hero);
  padding-bottom: 5rem;
}
/* os orbs ficam confinados com clip no pseudo-elemento */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-bg-orb.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,47,190,0.35) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-bg-orb.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-bg-orb.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(199,125,255,0.2) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: orb-float 12s ease-in-out infinite 3s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ── Hero Logo ── */
.hero-logo-wrap {
  opacity: 0;
  animation: fade-up 1s ease 0.3s forwards;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 340px; height: 340px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
}
.hero-logo-wrap::before {
  border: 1px solid rgba(180, 100, 255, 0.45);
  animation: logo-ring 3.5s ease-out infinite 0.2s;
}
.hero-logo-wrap::after {
  border: 1px solid rgba(212, 175, 55, 0.35);
  animation: logo-ring 3.5s ease-out infinite 1.75s;
}
@keyframes logo-ring {
  0%   { transform: translate(-50%, -50%) scale(0.75); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.9);  opacity: 0; }
}
.hero-logo-img {
  width: clamp(240px, 42vw, 400px);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: logo-float 7s ease-in-out infinite, logo-aura 4s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-16px) scale(1.02); }
}
@keyframes logo-aura {
  0%, 100% {
    filter: brightness(1.05) saturate(1.2) contrast(1.05)
            drop-shadow(0 0 14px rgba(147, 51, 234, 0.5))
            drop-shadow(0 0 40px rgba(147, 51, 234, 0.2));
  }
  50% {
    filter: brightness(1.18) saturate(1.4) contrast(1.08)
            drop-shadow(0 0 28px rgba(190, 120, 255, 0.85))
            drop-shadow(0 0 70px rgba(212, 175, 55, 0.3));
  }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 10rem 2rem 2rem;
  max-width: 1100px;
  width: 100%;
}

/* Layout split: logo esquerda | texto direita */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-text-side .hero-eyebrow  { justify-content: flex-start; }
.hero-text-side .hero-tags     { justify-content: flex-start; }
.hero-text-side .hero-actions  { justify-content: flex-start; }
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  opacity: 0; animation: fade-up 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gradient-gold);
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 0.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0; animation: fade-up 0.8s ease 0.5s forwards;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5));
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fade-up 0.8s ease 0.7s forwards;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-style: italic;
  opacity: 0; animation: fade-up 0.8s ease 0.9s forwards;
}

.hero-tags {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0; animation: fade-up 0.8s ease 1.4s forwards;
}
.hero-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--purple-light);
  border-radius: 2px;
  background: rgba(123,47,190,0.1);
}

.hero-actions {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.8s ease 1.7s forwards;
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  margin-top: 2rem; align-self: center;
  opacity: 0; animation: fade-up 0.8s ease 1.8s forwards;
}
.hero-scroll-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--purple-mid), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0) skewX(-15deg);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: scaleX(1.2) skewX(-15deg); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: white;
  box-shadow: 0 4px 25px rgba(123, 47, 190, 0.5);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(123, 47, 190, 0.8);
  transform: translateY(-2px);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 25px rgba(201, 168, 76, 0.4);
}
.btn-gold:hover {
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.7);
  transform: translateY(-2px);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--purple-mid);
  color: var(--purple-light);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gradient-gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, var(--text) 0%, var(--purple-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.section-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
}

/* ── Divider ── */
.divider {
  width: 80px; height: 1px;
  background: var(--gradient-gold);
  margin: 0 auto;
  position: relative;
}
.divider::after {
  content: '✦';
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  background: var(--black);
  padding: 0 6px;
}

/* ── About Section ── */
.about { background: var(--deep); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(123,47,190,0.12) 0%, transparent 60%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  position: relative; z-index: 1;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-frame {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.about-photo-frame::before { display: none; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  image-rendering: high-quality;
  filter: brightness(0.97) contrast(1.05) saturate(1.08);
  transition: filter 0.5s ease;
}
.about-photo:hover { filter: brightness(1) contrast(1.08) saturate(1.12); }
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gradient-card);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.about-photo-placeholder .icon { font-size: 4rem; opacity: 0.5; }
.about-corner {
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--gold);
  border-style: solid;
}
.about-corner.tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
.about-corner.tr { top: -10px; right: -10px; border-width: 2px 2px 0 0; }
.about-corner.bl { bottom: -10px; left: -10px; border-width: 0 0 2px 2px; }
.about-corner.br { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--gradient-card);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  animation: badge-rotate 20s linear infinite;
  box-shadow: var(--glow-gold);
}
.about-badge .num {
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge .label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@keyframes badge-rotate {
  from { box-shadow: var(--glow-gold); }
  50% { box-shadow: 0 0 50px rgba(201,168,76,0.8); }
  to { box-shadow: var(--glow-gold); }
}

.about-text h2 { margin-bottom: 0.75rem; }
.about-text .about-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}
.about-text p strong { color: var(--purple-light); font-style: italic; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.about-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(123,47,190,0.08);
  transition: var(--transition);
}
.about-stat:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
}
.about-stat .stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.about-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── Services ── */
.services { background: var(--black); position: relative; }
.services::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(123,47,190,0.1) 0%, transparent 60%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative; z-index: 1;
}
.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ── Card com imagem esotérica ── */
.service-card--img { padding: 0; }

.sc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.sc-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .sc-img { transform: scale(1.08); }
.sc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,2,6,0.05) 0%,
    rgba(13,6,36,0.6) 65%,
    rgba(13,6,36,0.97) 100%
  );
}
.sc-body { padding: 0 2rem 2rem; position: relative; z-index: 1; }
.service-card:not(.service-card--img) .sc-body { padding: 0; }

/* Ícone flutua sobre a fronteira imagem → conteúdo */
.service-icon--float {
  margin-top: -28px;
  background: rgba(13,6,36,0.9) !important;
  border-color: rgba(201,168,76,0.4) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(123,47,190,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--purple-mid);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(123,47,190,0.3), var(--glow-purple);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: rgba(123,47,190,0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: scale(1.1) rotate(5deg);
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.service-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.service-footer {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.service-price {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.service-duration {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.service-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--purple-light);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.service-card:hover .service-cta { color: var(--gold); }
.service-cta .arrow { transition: transform 0.3s ease; }
.service-card:hover .service-cta .arrow { transform: translateX(5px); }

/* ── Booking Section ── */
.booking {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(123,47,190,0.15) 0%, transparent 50%);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  position: relative; z-index: 1;
}
.booking-info h2 { margin-bottom: 1.5rem; }
.booking-info p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.15rem; }
.booking-steps { list-style: none; }
.booking-step {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
}
.step-text strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.step-text span { font-size: 0.95rem; color: var(--text-muted); }

.booking-form-wrap {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem;
  position: relative;
}
.booking-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0% 0%; }
  to { background-position: 200% 0%; }
}

.form-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: rgba(10, 8, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(123,47,190,0.15);
  background: rgba(15, 12, 30, 0.8);
}
.form-control::placeholder { color: rgba(157, 142, 196, 0.4); font-style: italic; }

select.form-control { cursor: pointer; }
select.form-control option { background: var(--dark); color: var(--text); }

textarea.form-control { resize: vertical; min-height: 100px; }

.form-control:disabled {
  opacity: 0.4; cursor: not-allowed;
}

/* Horários grid */
.horarios-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.horario-btn {
  padding: 0.5rem 0.9rem;
  background: rgba(123,47,190,0.08);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.horario-btn:hover,
.horario-btn.active {
  background: rgba(123,47,190,0.3);
  border-color: var(--purple-mid);
  color: var(--purple-light);
}
.horario-btn.selecionado {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.horarios-msg {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.5rem;
}

/* ══════════════════════════
   ARCANOS — MESA DE LEITURA
══════════════════════════ */
.arcanos-section {
  background: radial-gradient(ellipse at 50% 40%, #120820 0%, #07040f 55%, #030208 100%);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Brilho central simulando vela */
.arcanos-section::before {
  content: '';
  position: absolute;
  width: 900px; height: 500px;
  top: 15%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.arcanos-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.arcanos-orb-1 {
  width: 600px; height: 600px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(123,47,190,0.12) 0%, transparent 70%);
}
.arcanos-orb-2 {
  width: 450px; height: 450px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(123,47,190,0.08) 0%, transparent 70%);
}

/* ── Galeria ── */
.arcanos-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin: 4rem 0 3.5rem;
  perspective: 1400px;
  padding-bottom: 1.5rem;
}

/* ── Card wrapper (carrega a inclinação) ── */
.arcano-card {
  flex-shrink: 0;
  cursor: pointer;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
}
.arcano-card:hover {
  transform: rotate(0deg) translateY(-20px);
  z-index: 10;
}

/* ── Frame (mecanismo de flip 3D) ── */
.arcano-card-frame {
  width: 130px; height: 218px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
  border-radius: 10px;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.65),
    0 2px 6px rgba(0,0,0,0.8);
}
.arcano-card:hover .arcano-card-frame {
  transform: rotateY(180deg);
  box-shadow:
    0 28px 65px rgba(0,0,0,0.7),
    0 0 35px rgba(201,168,76,0.22),
    0 0 70px rgba(123,47,190,0.18);
}

/* ── Faces compartilham o mesmo espaço ── */
.arcano-card-back,
.arcano-card-front {
  position: absolute; inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Verso: estampa mística ── */
.arcano-card-back {
  background: linear-gradient(145deg, #1c0b35 0%, #0e0520 50%, #160830 100%);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
}
.acb-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient( 45deg, rgba(123,47,190,0.07) 0, rgba(123,47,190,0.07) 1px, transparent 1px, transparent 9px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.04) 0, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 9px);
}
.acb-pattern::after {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
}
.acb-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
}
.acb-eye {
  font-size: 2.4rem;
  filter: drop-shadow(0 0 12px rgba(123,47,190,0.9));
  animation: eyePulse 3.5s ease-in-out infinite;
}
.acb-star {
  font-size: 0.75rem;
  color: rgba(201,168,76,0.55);
  letter-spacing: 0.1em;
}
@keyframes eyePulse {
  0%,100% { filter: drop-shadow(0 0 10px rgba(123,47,190,0.8)); }
  50%      { filter: drop-shadow(0 0 22px rgba(201,168,76,0.9)); }
}

/* ── Frente: foto da carta ── */
.arcano-card-front {
  transform: rotateY(180deg);
  background: #0d0624;
  border: 1px solid rgba(201,168,76,0.35);
}
.arcano-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.arcano-card-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(160deg, #1a0a2e 0%, #0d0624 100%);
}

/* ── Overlay com nome (sempre visível na frente) ── */
.arcano-card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,2,6,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  padding: 0 0.5rem 0.8rem;
}
.arcano-card-num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  opacity: 0.85;
}
.arcano-card-nome {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.62rem;
  color: #f5f0e8;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
}

/* ── Cantos ornamentais (no verso) ── */
.acf-corner {
  position: absolute;
  width: 13px; height: 13px;
  z-index: 3; pointer-events: none;
  opacity: 0.55;
}
.acf-tl { top: 6px;  left: 6px;  border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.acf-tr { top: 6px;  right: 6px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.acf-bl { bottom: 6px; left: 6px;  border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.acf-br { bottom: 6px; right: 6px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* ── Emoji fallback (frente) ── */
.arcano-card-emoji-body {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  background: linear-gradient(160deg, #1a0a2e 0%, #0d0624 100%);
}
.ace-num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  color: rgba(201,168,76,0.45);
}
.ace-icon { font-size: 3rem; }

/* CTA */
.arcanos-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.arcanos-quote-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}

/* ══════════════════════════
   MODAL ARCANO
══════════════════════════ */
.arcano-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.arcano-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.arcano-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(3,2,6,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.arcano-modal-box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #120820 0%, #0a0514 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 3rem;
  max-width: 760px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.8),
    0 0 60px rgba(123,47,190,0.2);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.arcano-modal.is-open .arcano-modal-box {
  transform: translateY(0) scale(1);
}
.arcano-modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  color: var(--text-muted); font-size: 1.1rem;
  cursor: pointer; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.arcano-modal-close:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

/* Imagem no modal */
.ambox-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 200px; height: 335px;
}
.ambox-corner {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 2; pointer-events: none;
}
.amc-tl { top: 4px;  left: 4px;  border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.amc-tr { top: 4px;  right: 4px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.amc-bl { bottom: 4px; left: 4px;  border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.amc-br { bottom: 4px; right: 4px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.ambox-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 30px rgba(123,47,190,0.2);
  display: none;
}
.ambox-img-empty {
  width: 100%; height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  background: linear-gradient(160deg, #1a0a2e, #0d0624);
  display: none;
  align-items: center; justify-content: center;
  font-size: 5rem;
}

/* Painel de info */
.ambox-info {
  display: flex; flex-direction: column;
  gap: 0.6rem;
  min-height: 335px;
}
.ambox-deco {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.25em;
  color: var(--gold); opacity: 0.55;
}
.ambox-numero {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.4em;
  color: var(--gold); opacity: 0.8;
  text-transform: uppercase;
  min-height: 1.2rem;
}
.ambox-nome {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; line-height: 1.2;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.ambox-divider {
  width: 50px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0.5rem 0;
}
.ambox-desc {
  font-size: 0.92rem; line-height: 1.85;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}
.ambox-btn { align-self: flex-start; font-size: 0.78rem; margin-top: 0.5rem; }

/* Modal responsivo */
@media (max-width: 640px) {
  .arcano-modal-box {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }
  .ambox-img-wrap { width: 140px; height: 235px; margin: 0 auto; }
  .ambox-info { min-height: auto; align-items: center; }
  .ambox-divider { margin: 0.5rem auto; }
  .ambox-btn { align-self: center; }
}

/* ── Testimonials ── */
.testimonials { background: var(--deep); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative; z-index: 1;
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.1);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 2rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.12);
  pointer-events: none;
}
.testimonial-stars {
  display: flex; gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.star { color: var(--gold); font-size: 0.9rem; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-deep), #1a0d3d, var(--purple-deep));
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239d4edd' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .section-eyebrow,
.cta-banner .section-title,
.cta-banner .section-lead { position: relative; z-index: 1; }
.cta-banner .section-title {
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner .cta-actions {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem;
  position: relative; z-index: 1;
}

/* ── Contact / Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .brand-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .brand-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(123,47,190,0.1);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: rgba(123,47,190,0.3);
  border-color: var(--purple-mid);
  color: var(--purple-light);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--purple-light); padding-left: 6px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .text { color: var(--text-muted); font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: rgba(157, 142, 196, 0.5);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex; gap: 1.5rem;
}
.footer-bottom-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: rgba(157, 142, 196, 0.5);
}
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ── Whatsapp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: wha-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 35px rgba(37,211,102,0.8);
}
@keyframes wha-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── Modals ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--text-muted); font-size: 1.5rem;
  cursor: pointer; transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal h3 { font-family: 'Raleway', sans-serif; margin-bottom: 0.75rem; color: var(--gold); }
.modal p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Loading Spinner ── */
.spinner {
  width: 24px; height: 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.toast {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--glow-purple);
  animation: toast-in 0.4s ease forwards;
  min-width: 280px;
}
.toast.success { border-color: #4CAF50; }
.toast.error { border-color: #f44336; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Animations helper ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Navigation ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,6,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none;
  color: var(--text-muted); font-size: 2rem;
  cursor: pointer;
}

/* ── Page Success ── */
.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-hero);
  text-align: center; padding: 2rem;
}
.success-card {
  max-width: 550px;
  background: var(--gradient-card);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 4rem 3rem;
  box-shadow: var(--glow-gold);
}
.success-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.success-card h1 {
  font-family: 'Raleway', sans-serif;
  color: var(--gold);
  margin-bottom: 1rem;
}
.success-card p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Admin Styles ── */
.admin-body {
  background: #0a0812;
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: rgba(10,8,20,0.95);
  border-right: 1px solid var(--border);
  position: fixed; top: 0; left: 0; bottom: 0;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.admin-logo {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.admin-logo span {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.admin-logo small {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.admin-nav { padding: 1.5rem 0; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border-left: 2px solid transparent;
  text-decoration: none;
}
.admin-nav a:hover,
.admin-nav a.active {
  color: var(--purple-light);
  background: rgba(123,47,190,0.08);
  border-left-color: var(--purple-mid);
}
.admin-nav a .nav-icon { width: 18px; text-align: center; font-size: 1rem; }

.admin-main { margin-left: 260px; padding: 2.5rem; min-height: 100vh; }
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.admin-title { font-family: 'Raleway', sans-serif; font-size: 1.5rem; }
.admin-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--purple-mid); transform: translateY(-2px); }
.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-card-icon.purple { background: rgba(123,47,190,0.2); }
.stat-card-icon.gold { background: rgba(201,168,76,0.2); }
.stat-card-icon.green { background: rgba(76,175,80,0.2); }
.stat-card-icon.blue { background: rgba(33,150,243,0.2); }
.stat-card-body .stat-val {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.stat-card-body .stat-label { font-size: 0.8rem; color: var(--text-muted); }

.admin-table-wrap {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.admin-table-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.admin-table-header h3 { font-family: 'Raleway', sans-serif; font-size: 1rem; }

table { width: 100%; border-collapse: collapse; }
th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-family: 'Cinzel', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(155,80,220,0.08);
  font-size: 0.9rem;
  color: var(--text);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(123,47,190,0.05); }

.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}
.badge-pending { background: rgba(255,152,0,0.15); color: #ffb74d; }
.badge-confirmed { background: rgba(76,175,80,0.15); color: #81c784; }
.badge-cancelled { background: rgba(244,67,54,0.15); color: #e57373; }
.badge-done { background: rgba(33,150,243,0.15); color: #64b5f6; }

.admin-form-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}
.admin-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.admin-form-card .form-group { margin-bottom: 1.5rem; }
.admin-form-card .form-control {
  background: rgba(0,0,0,0.3);
  border-color: var(--border);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .booking-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .arcanos-gallery { gap: 1.25rem; }
  .arcano-card-frame { width: 130px; height: 218px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 1.5rem; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  body { cursor: auto; }
  #cursor, #cursor-trail { display: none; }
  /* Hero split → empilha vertical no mobile */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text-side { align-items: center; }
  .hero-text-side .hero-eyebrow  { justify-content: center; }
  .hero-text-side .hero-tags     { justify-content: center; }
  .hero-text-side .hero-actions  { justify-content: center; }
  .hero-logo-img { width: clamp(180px, 60vw, 300px); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .booking-form-wrap { padding: 2rem 1.25rem; }
  .arcanos-gallery { gap: 0.75rem; }
  .arcano-card-frame { width: 110px; height: 185px; }
}
