/* ============================================
   DIÁRIO DA SACERDOTISA — Hotsite Styles
   ============================================ */

/* --- Tokens -------------------------------- */
:root {
  --bg:         #0D0A1A;
  --bg2:        #0A0817;
  --surface:    #130F24;
  --surface2:   #1A1430;
  --border:     #2A1F4A;
  --primary:    #7B5EA7;
  --primary-dim:#5C4480;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #8B6E2E;
  --text:       #E8DFF5;
  --muted:      #8B7BAA;
  --white:      #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --section-pad: clamp(64px, 10vw, 120px);
  --container:   1200px;
  --gutter:      clamp(20px, 5vw, 48px);
}

/* --- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ---------------------------- */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* --- Layout -------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,10,26,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,31,74,0.4);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(13,10,26,0.97);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-cta {
  display: flex;
  gap: 12px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #A8722A 100%);
  color: #1A0F00;
  box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 4px 16px rgba(0,0,0,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 0 36px rgba(201,168,76,0.55), 0 6px 24px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: #D4C1F5;
  box-shadow: 0 0 20px rgba(123,94,167,0.25);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
}
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(123,94,167,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(20,12,48,0.6) 0%, transparent 70%),
    linear-gradient(180deg, rgba(13,10,26,0.2) 0%, rgba(13,10,26,0.7) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

/* Mockup do phone */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  width: 260px;
  animation: float 4s ease-in-out infinite;
}
.phone-frame {
  width: 260px;
  height: 520px;
  background: linear-gradient(160deg, #1E1535 0%, #0D0A1A 50%, #150F2A 100%);
  border-radius: 36px;
  border: 2px solid rgba(123,94,167,0.5);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.15),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(123,94,167,0.2),
    inset 0 0 30px rgba(123,94,167,0.05);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #0A0817;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}
.phone-screen {
  padding: 12px 16px;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-logo-sm {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
}
.phone-moon {
  font-size: 1.1rem;
}
.phone-greeting {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.phone-date {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
}
.phone-card {
  background: rgba(123,94,167,0.15);
  border: 1px solid rgba(123,94,167,0.3);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.phone-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.phone-card-text {
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.4;
  font-family: var(--font-serif);
  font-style: italic;
}
.phone-tarot-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.phone-tarot-card {
  flex: 1;
  height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(123,94,167,0.2));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.phone-energy-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.phone-energy-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}
.phone-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), #A8722A);
  color: #1A0F00;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}
.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(123,94,167,0.5), transparent 70%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================
   ORNAMENT DIVIDER
   ============================================ */
.divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  padding: 0 var(--gutter);
  opacity: 0.6;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: var(--section-pad) var(--gutter);
}
.section-bg-alt {
  background: var(--surface);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s ease;
  cursor: default;
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 32px rgba(123,94,167,0.2), 0 12px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   APP PREVIEW (MOCKUPS)
   ============================================ */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.preview-phone {
  background: linear-gradient(160deg, #1E1535 0%, #0D0A1A 60%, #150F2A 100%);
  border: 1.5px solid rgba(123,94,167,0.4);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(123,94,167,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preview-phone:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(123,94,167,0.2);
}
.preview-phone.center-phone {
  transform: translateY(-20px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.15);
}
.preview-phone.center-phone:hover {
  transform: translateY(-28px);
}
.preview-notch {
  height: 20px;
  background: rgba(0,0,0,0.4);
  border-radius: 0 0 12px 12px;
  width: 60px;
  margin: 0 auto;
}
.preview-screen { padding: 10px 12px 16px; }
.preview-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}
.preview-item {
  background: rgba(123,94,167,0.12);
  border: 1px solid rgba(123,94,167,0.2);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 0.68rem;
  color: var(--muted);
}
.preview-item-title {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  margin-bottom: 3px;
}
.preview-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 6px;
}
.preview-mini-card {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--muted);
}
.preview-mini-icon { font-size: 1.1rem; margin-bottom: 2px; }
.preview-mini-name { color: var(--text); font-size: 0.62rem; }
.preview-big-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(123,94,167,0.15));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 6px;
  text-align: center;
}
.preview-planet-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.62rem;
  color: var(--muted);
}
.preview-planet-sign {
  color: var(--gold);
  font-weight: 600;
}
.preview-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ============================================
   QUOTE / EXPERIENCE
   ============================================ */
.experience-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 32px;
}
.experience-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.highlight-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.testimonial-quote-icon {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(123,94,167,0.4);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  text-align: center;
  padding: var(--section-pad) var(--gutter);
  background: linear-gradient(135deg, #150D30 0%, #0D0A1A 40%, #1A0E35 100%);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(123,94,167,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cta-note {
  font-size: 0.8rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.btn-gold-pulse {
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.3), 0 4px 16px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 48px rgba(201,168,76,0.6), 0 4px 24px rgba(0,0,0,0.4); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px var(--gutter) 32px;
  background: var(--bg2);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img { height: 32px; opacity: 0.8; }
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.8;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}
.footer-copy .gold-dot { color: var(--gold); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-visual { display: none; } /* hide mockup on mobile to save space */

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .preview-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .preview-phone.center-phone {
    transform: none;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .nav-logo-name { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ============================================
   ORNAMENT LINES
   ============================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 0 auto 40px;
}
.ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.ornament-symbol {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.7;
}
