/* ============================================
   Luz do Tarot — Design System
   ============================================ */
:root {
  --bg: #0B0D17;
  --bg-2: #121026;
  --violet: #2A1B3D;
  --gold: #D4AF37;
  --gold-soft: #E2C069;
  --text: #F4F4F6;
  --muted: rgba(244, 244, 246, 0.68);
  --line: rgba(212, 175, 55, 0.22);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-brd: rgba(255, 255, 255, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(ellipse at top, #1a1338 0%, var(--bg) 55%, var(--bg) 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --------- Estrelas & Aurora --------- */
.stars {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: transparent;
}
.stars span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff; opacity: 0.6;
  animation: twinkle 4s infinite ease-in-out;
}
@keyframes twinkle { 0%,100%{opacity:.2} 50%{opacity:.9} }
.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(600px circle at 20% 20%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(700px circle at 80% 70%, rgba(80,40,140,0.20), transparent 60%);
  animation: floatAurora 20s ease-in-out infinite alternate;
}
@keyframes floatAurora { from{transform:translate(0,0)} to{transform:translate(-20px,20px)} }

/* --------- Header --------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 23, 0.55);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.5px; }
.logo-img { height: 32px; width: auto; object-fit: contain; }
.logo-mark { color: var(--gold); text-shadow: 0 0 12px rgba(212,175,55,0.6); }
.nav { display: flex; gap: 26px; align-items: center; font-size: 0.95rem; }
.nav a { color: var(--muted); transition: color .25s; }
.nav a:hover { color: var(--gold-soft); }
.nav-cta {
  padding: 10px 20px; border: 1px solid var(--gold); border-radius: 999px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; box-shadow: var(--shadow-gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* --------- Buttons --------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-family: var(--sans);
  font-weight: 500; font-size: 0.98rem; letter-spacing: 0.3px;
  cursor: pointer; transition: all .3s ease; border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1338;
  box-shadow: 0 4px 20px -6px rgba(212,175,55,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(212,175,55,0.55); }
.btn-ghost { color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline { color: var(--gold-soft); border-color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(212,175,55,0.12); box-shadow: var(--shadow-gold); }
.btn-block { width: 100%; }

/* --------- Hero --------- */
.hero {
  position: relative; text-align: center;
  padding: 100px 6vw 120px;
  overflow: hidden;
}
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.eyebrow { color: var(--gold); letter-spacing: 3px; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 620px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; }

.floating-cards { position: absolute; inset: 0; pointer-events: none; }
.f-card {
  position: absolute; width: 70px; height: 100px; border-radius: 10px;
  background: linear-gradient(145deg, var(--violet), #1a1030);
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.5rem; color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
  animation: floatY 6s ease-in-out infinite;
}
.f-card-1 { top: 15%; left: 8%; animation-delay: 0s; }
.f-card-2 { top: 60%; left: 5%; animation-delay: 1.5s; transform: rotate(-8deg); }
.f-card-3 { top: 20%; right: 10%; animation-delay: 3s; transform: rotate(8deg); }
@keyframes floatY { 0%,100%{transform:translateY(0) rotate(var(--r,0deg))} 50%{transform:translateY(-20px) rotate(var(--r,0deg))} }

/* --------- Sections --------- */
section { padding: 90px 6vw; }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block; color: var(--gold); letter-spacing: 3px;
  font-size: 0.75rem; text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* --------- Glass Card --------- */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent 60%);
  pointer-events: none;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px -20px rgba(212,175,55,0.35);
}

/* --------- Mini Tarot --------- */
.mini-tarot .section-head { text-align: center; margin-left:auto; margin-right:auto; }
.cards-row {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
  perspective: 1200px; margin-bottom: 40px;
}
.tarot-card {
  width: 180px; height: 280px; background: none; border: none; padding: 0;
  cursor: pointer; perspective: 1000px;
}
.card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .8s cubic-bezier(.4,.2,.2,1);
}
.tarot-card.flipped .card-inner { transform: rotateY(180deg); }
.card-face {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: 14px; padding: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.card-back {
  background: linear-gradient(145deg, var(--violet), #1a1030);
  color: var(--gold); font-size: 3rem;
  box-shadow: inset 0 0 30px rgba(212,175,55,0.15);
}
.card-back::after {
  content: ""; position: absolute; inset: 8px; border: 1px solid var(--gold);
  border-radius: 10px; opacity: 0.5;
}
.card-front {
  background: linear-gradient(180deg, #1a1338, var(--violet));
  transform: rotateY(180deg);
  text-align: center;
}
.card-title { font-family: var(--serif); color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; }
.card-msg { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.tarot-card:hover:not(.flipped) .card-back { box-shadow: 0 0 40px rgba(212,175,55,0.4); }
.mini-cta {
  text-align: center; animation: fadeUp .6s ease;
}
.mini-cta p { color: var(--muted); margin-bottom: 16px; font-family: var(--serif); font-size: 1.2rem; }
@keyframes fadeUp { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)} }

/* --------- About --------- */
.about {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center;
}
.photo-frame {
  aspect-ratio: 3/4; border-radius: var(--radius);
  border: 1px solid var(--gold); padding: 10px;
  background: linear-gradient(145deg, rgba(212,175,55,0.05), transparent);
  box-shadow: var(--shadow-gold);
  max-width: 340px; margin: 0 auto;
}
.photo-placeholder {
  width: 100%; height: 100%; border-radius: 12px;
  background: linear-gradient(160deg, var(--violet), #1a1030);
  display: grid; place-items: center; font-size: 5rem; color: var(--gold);
}
.about-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 20px; }
.about-list li { padding: 6px 0; color: var(--muted); }
.about-list li::marker { color: var(--gold); }

/* --------- Services --------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.glass-card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 10px; color: var(--text); }
.card-desc { color: var(--muted); margin-bottom: 20px; min-height: 48px; }
.card-meta { list-style: none; margin-bottom: 24px; }
.card-meta li { color: var(--muted); font-size: 0.9rem; padding: 4px 0; }

/* --------- Testimonials --------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonials blockquote p {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  color: var(--text); margin-bottom: 16px;
}
.testimonials blockquote footer { color: var(--gold); font-size: 0.9rem; }

/* --------- FAQ --------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0; cursor: pointer;
}
.faq-list summary {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 1.25rem; color: var(--text);
  list-style: none; transition: color .25s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  color: var(--gold); font-size: 1.5rem; transition: transform .3s;
}
.faq-list details[open] summary { color: var(--gold-soft); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin-top: 14px; color: var(--muted); }

/* --------- Contact --------- */
.contact-form { max-width: 720px; margin: 0 auto; display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.85rem; color: var(--muted); letter-spacing: 0.3px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(0,0,0,0.3); border: 1px solid var(--glass-brd);
  border-radius: 10px; padding: 12px 14px; color: var(--text);
  font-family: inherit; font-size: 0.95rem; transition: border-color .25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-note {
  text-align: center; color: var(--gold);
  padding: 12px; border: 1px solid var(--gold); border-radius: 10px;
  animation: fadeUp .5s ease;
}

/* --------- WhatsApp Float --------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-weight: 500; font-size: 0.9rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px); }
@keyframes pulse {
  0%,100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 40px -4px rgba(37, 211, 102, 0.85); }
}

/* --------- Footer --------- */
.site-footer {
  padding: 60px 6vw 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: rgba(0,0,0,0.25);
}
.foot-inner { max-width: 720px; margin: 0 auto; display: grid; gap: 18px; }
.foot-brand { display: flex; justify-content: center; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.2rem; }
.foot-social { display: flex; gap: 22px; justify-content: center; }
.foot-social a { color: var(--muted); font-size: 0.9rem; transition: color .25s; }
.foot-social a:hover { color: var(--gold); }
.foot-note { color: var(--muted); font-size: 0.85rem; font-style: italic; }
.foot-copy { color: var(--muted); font-size: 0.8rem; }

/* --------- Responsive --------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; gap: 14px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11, 13, 23, 0.95); padding: 24px 6vw;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
  .about { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wa-float .wa-text { display: none; }
  .wa-float { padding: 14px; }
  .f-card { display: none; }
  section { padding: 70px 6vw; }
  .tarot-card { width: 140px; height: 220px; }
}
