/* ============================================
   CHURCH PRAYER WEBSITE — DESIGN SYSTEM
   Typography: Playfair Display + Inter
   Colors: Warm Earthy Tones (Saddle Brown, Terra Cotta, Gold)
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --color-primary: #8B4513;
  --color-primary-light: #A0522D;
  --color-secondary: #C0392B;
  --color-secondary-light: #E74C3C;
  --color-accent: #CA8A04;
  --color-accent-light: #EAB308;
  --color-bg: #FFFAF5;
  --color-bg-alt: #FFF5EB;
  --color-dark: #1A1A2E;
  --color-dark-surface: #16213E;
  --color-text: #2D2D2D;
  --color-text-muted: #6B6B6B;
  --color-text-light: #999999;
  --color-white: #FFFFFF;
  --color-border: #E8DDD3;
  --color-card-shadow: rgba(139, 69, 19, 0.08);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 24px var(--color-card-shadow);

  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  --nav-height: 60px;
  --container-max: 1200px;

  /* iPhone / notch: tom quase-preto aquecido — status bar, letterboxing, faixa fixa */
  --safe-area-status-fill: #2a130f;

  /* Altura útil do ecrã (barra de URL / teclado): alinhar a `100dvh` em CSS */
  --app-vh: 100dvh;
}

/* ---------- Audio Gate Overlay ---------- */
.audio-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.audio-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.audio-gate__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 52px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  animation: gateCardIn 0.6s ease forwards;
}

.audio-gate__icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(202, 138, 4, 0.15);
  color: var(--color-accent-light);
}

.audio-gate__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.audio-gate__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A2E;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 20px rgba(202, 138, 4, 0.35);
}

.audio-gate__btn:hover {
  transform: scale(1.05);
  background: var(--color-accent-light);
  box-shadow: 0 6px 28px rgba(202, 138, 4, 0.5);
}

.audio-gate__btn svg {
  flex-shrink: 0;
}

@keyframes gateCardIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 480px) {
  .audio-gate__card {
    padding: 32px 28px;
    margin: 0 20px;
  }

  .audio-gate__text {
    font-size: 0.9rem;
  }

  .audio-gate__btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--safe-area-status-fill);
  min-height: 100%;
  min-height: var(--app-vh, 100dvh);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100%;
  min-height: var(--app-vh, 100dvh);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
}

/* Garante a cor na safe area em todas as páginas que usam este CSS (index, order, thank-you). */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background-color: var(--safe-area-status-fill);
  z-index: 10001;
  pointer-events: none;
}

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

picture {
  display: block;
}

/* Note: `content-visibility: auto` em <img loading="lazy"> causa imagens
   invisíveis no Safari iOS quando o pai usa `aspect-ratio` (cards "How it works",
   problem split, cta hero). Mantido apenas em sections grandes abaixo da dobra. */
.quote-banner,
.faq-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(202, 138, 4, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(202, 138, 4, 0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Scroll-reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for card groups */
.stagger-1 {
  transition-delay: 0ms;
}

.stagger-2 {
  transition-delay: 120ms;
}

.stagger-3 {
  transition-delay: 240ms;
}

.stagger-4 {
  transition-delay: 360ms;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--transition-normal),
    box-shadow var(--transition-normal),
    padding var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo-icon {
  width: 44px;
  height: 44px;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar__logo-icon {
  color: var(--color-secondary);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar__logo-text {
  color: var(--color-text);
}

.navbar__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
  padding: 8px 0;
  position: relative;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link.active::after {
  width: 100%;
  background-color: var(--color-secondary);
}

.navbar__link.active {
  color: var(--color-white);
}

.navbar__link:hover {
  color: var(--color-accent-light);
}

.navbar.scrolled .navbar__link {
  color: var(--color-text);
}

.navbar.scrolled .navbar__link.active {
  color: var(--color-secondary);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--color-secondary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__search-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.navbar__search-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .navbar__search-btn {
  color: var(--color-text);
}

.navbar.scrolled .navbar__search-btn:hover {
  background-color: var(--color-bg-alt);
}

.navbar__search-btn svg {
  width: 20px;
  height: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn--outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(202, 138, 4, 0.35);
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.75rem;
}

/* Mobile Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar.scrolled .navbar__burger span {
  background-color: var(--color-text);
}

.navbar__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  padding-top: 8px;
  padding-bottom: 40px;
}

/* ── Light / Card variant ──────────────────────────────── */
.hero--light {
  height: auto;
  min-height: unset;
  background-color: var(--color-bg);
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 64px;
  overflow: visible;
}

/* Card-layout content wrapper */
.hero__content--card {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
  width: 100%;
  gap: 0;
}

/* ── Video card ────────────────────────────────────────── */
.hero__video-card {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.10);
  margin-bottom: 28px;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
}

.hero__video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Tag line ──────────────────────────────────────────── */
.hero__tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

/* ── Title modifier for dark bg ────────────────────────── */
.hero__title--dark {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text) !important;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: none !important;
  animation: none !important;
}

.hero__title--dark em {
  font-style: italic;
  color: var(--color-secondary) !important;
  text-decoration: none;
  text-shadow: none !important;
}

/* ── Subtitle modifier for dark bg ─────────────────────── */
.hero__subtitle--dark {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #5a5a5a !important;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 28px;
  text-shadow: none !important;
}

/* ── Social proof row ──────────────────────────────────── */
.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  object-fit: cover;
  margin-left: -8px;
}

.hero__avatars img:first-child {
  margin-left: 0;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero__stars-count {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 6px;
}

/* ── microcopy tweak for light hero ───────────────────── */
.hero--light .hero__microcopy {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  margin-top: 10px;
  margin-bottom: 0;
  text-shadow: none;
}

/* ── Responsive tweaks ─────────────────────────────────── */
@media (max-width: 600px) {
  .hero__video-card {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 22px;
  }

  .hero__title--dark {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero--light {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 48px;
  }
}

/* ── Hero — contained video card (above title) ─────────── */
.hero__card-wrap {
  width: 100%;
  max-width: 720px;
  margin: 48px auto 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
}

.hero__card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .hero__card-wrap {
    margin-top: 64px;
  }
}

@media (min-width: 1200px) {
  .hero__card-wrap {
    margin-top: 80px;
  }
}

@media (max-width: 600px) {
  .hero__card-wrap {
    max-width: calc(100vw - 32px);
    border-radius: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
  }
}


.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* When 3D is active, show background image softly behind the canvas */
.hero--3d .hero__video-wrap {
  opacity: 1;
}


.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
}

.hero__video-picture,
.hero__player-cover picture,
.problem-split__image picture,
.about-card__image-wrap picture,
.testimonial-card__photo picture,
.cta-hero__bg picture {
  width: 100%;
  height: 100%;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Máxima qualidade de renderização */
  image-rendering: high-quality;
  will-change: auto;
}

.hero__video[poster] {
  background: #24170f;
}

/* Overlay escuro de baixa opacidade — a imagem já tem vinheta embutida */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-light);
  margin-bottom: 20px;

}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;

}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
  opacity: 0.7;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(202, 138, 4, 0.15);
  border: 1px solid rgba(202, 138, 4, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-accent-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-light);
}

/* Divine Light Beam — heavenly glow from above */

/* Title shine sweep element */
.hero__title-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(234, 179, 8, 0.35) 40%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(234, 179, 8, 0.35) 60%,
    transparent 100%
  );
  transform: skewX(-20deg) translateX(-150%);
  pointer-events: none;
  z-index: 1;
}

/* Hero title emphasis */
.hero__title em {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-style: italic;
  color: var(--color-accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(234, 179, 8, 0.4);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

/* Persistent soft glow on Prayer word (added by JS) */
.hero__title em.divine-glow {
  text-shadow:
    0 0 20px rgba(234, 179, 8, 0.4),
    0 0 40px rgba(234, 179, 8, 0.2),
    0 0 80px rgba(234, 179, 8, 0.1);
}

/* Hero subtitle emphasis */
.hero__subtitle strong {
  color: var(--color-white);
  font-weight: 600;
}

/* Hero Main CTA glow */
.hero__cta-main {
  padding: 16px 36px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  animation: pulseGlow 2s ease-in-out 0.5s infinite;
}

/* Hero Trust Stats Bar */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

}

/* ====== Hero Music Player — Spotify Full Style ====== */
.hero__player {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* --- Top row: cover + info + like btn --- */
.hero__player-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__player-cover {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #282828;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__player-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__player-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.hero__player-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.hero__player-artist {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.hero__player-like {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}

.hero__player-like:hover {
  color: var(--color-white);
  transform: scale(1.12);
}

/* --- Progress row (inside info) --- */
.hero__player-progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.hero__player-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.hero__player-track:hover,
.hero__player-track.dragging {
  height: 5px;
}

.hero__player-track:hover .hero__player-thumb,
.hero__player-track.dragging .hero__player-thumb {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero__player-progress {
  height: 100%;
  width: 0%;
  background: var(--color-white);
  border-radius: 2px;
  pointer-events: none;
  transition: none;
}

.hero__player-track:hover .hero__player-progress,
.hero__player-track.dragging .hero__player-progress {
  background: #1DB954;
}

.hero__player-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero__player-time {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2px;
  min-width: 28px;
  flex-shrink: 0;
  user-select: none;
}

.hero__player-time:first-child {
  text-align: right;
}

.hero__player-time:last-child {
  text-align: left;
}

/* --- Controls row --- */
.hero__player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 2px;
}

.hero__player-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.hero__player-ctrl-btn:hover {
  color: var(--color-white);
  transform: scale(1.1);
}

.hero__player-ctrl-btn--skip {
  color: rgba(255, 255, 255, 0.8);
}

.hero__player-ctrl-btn--skip:hover {
  color: var(--color-white);
}

.hero__player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  color: #181818;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}

.hero__player-btn:hover {
  transform: scale(1.06);
  background: #f0f0f0;
}

.hero__player-btn:active {
  transform: scale(0.96);
}

/* --- Icon toggling via CSS class --- */
.hero__player-icon--pause { display: none; }
.hero__player.playing .hero__player-icon--play { display: none; }
.hero__player.playing .hero__player-icon--pause { display: block; }

.hero__player-vol-icon--off { display: none; }
.hero__player.muted .hero__player-vol-icon--on { display: none; }
.hero__player.muted .hero__player-vol-icon--off { display: block; }

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__trust-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* ---- Image Marquee ---- */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

.hero__marquee-track {
  display: flex;
  gap: 16px;
  animation: marqueeScroll 50s linear infinite;
  width: max-content;
}

.hero__marquee-img {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.hero__marquee-img:nth-child(odd) {
  transform: rotate(-2deg);
}

.hero__marquee-img:nth-child(even) {
  transform: rotate(3deg);
}

/* ============================================
   QUOTE BANNER
   ============================================ */
.quote-banner {
  position: relative;
  background-color: var(--color-white);
  padding: 50px 0;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.quote-banner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.quote-banner__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.quote-banner__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-top: -90px;
}

.quote-banner__content {
  flex: 1;
}

.quote-banner__text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.quote-banner__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.quote-banner__meta a {
  color: var(--color-secondary);
  cursor: pointer;
}

.quote-banner__meta a:hover {
  text-decoration: underline;
}

.quote-banner__social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.quote-banner__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.quote-banner__social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.quote-banner__social-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-header__dash {
  width: 60px;
  height: 2px;
  background-color: var(--color-border);
}

.section-header__icon {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-text);
}

.section-header__title--light {
  color: var(--color-white);
}

/* ============================================
   ABOUT SECTION (Who are we?)
   ============================================ */
.about-section {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
}

.about-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Video testimonials — behave like images in the card */
.about-card__video {
  display: block;
  pointer-events: none; /* prevent right-click / tap controls */
  background-color: #f7f3ec; /* neutral light tone matching theme to avoid white flash */
}

.about-card:hover .about-card__image {
  transform: scale(1.08);
}

.about-card__icon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.about-card__icon-badge svg {
  width: 22px;
  height: 22px;
}

.about-card__body {
  padding: 28px 24px;
}

.about-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.about-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.about-card__link:hover {
  gap: 12px;
  color: var(--color-secondary-light);
}

.about-card__link svg {
  width: 16px;
  height: 16px;
}

/* Bible verse banner */
.verse-banner {
  background-color: var(--color-bg-alt);
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.verse-banner__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.verse-banner__text svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.verse-banner__text a {
  color: var(--color-secondary);
  font-weight: 500;
  cursor: pointer;
}

.verse-banner__text a:hover {
  text-decoration: underline;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
  padding: 100px 0;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.event-card {
  background-color: var(--color-dark-surface);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}

.event-card__month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  background-color: rgba(202, 138, 4, 0.15);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-top: 8px;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-card__info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-card__info svg {
  width: 14px;
  height: 14px;
  display: inline;
  vertical-align: -2px;
  margin-right: 4px;
}

.event-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-card__actions .btn {
  padding: 8px 16px;
  font-size: 0.72rem;
}

/* Events CTA link */
.events-cta {
  text-align: center;
  margin-top: 48px;
}

.events-cta a {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.events-cta a:hover {
  gap: 14px;
  color: var(--color-accent-light);
}

.events-cta a svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   TESTIMONIALS — STATIC CARDS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.testimonials-section .section-header {
  max-width: 780px;
  margin: 0 auto 52px;
}

.testimonials-section .section-header__subtitle {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

/* Usa exatamente o mesmo padrão do .about-card */
.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__photo {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.testimonial-card:hover .testimonial-card__photo img {
  transform: scale(1.08);
}

.testimonial-card__body {
  padding: 28px 24px;
}

.testimonial-card__quote {
  color: var(--color-secondary);
  opacity: 0.85;
  margin-bottom: 10px;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}



/* ============================================
   SECOND CTA / HERO SECTION
   ============================================ */
.cta-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-hero__bg {
  position: absolute;
  inset: 0;
}

.cta-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 46, 0.7) 0%,
      rgba(139, 69, 19, 0.5) 100%);
}

.cta-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--container-max);
  padding: 0 24px;
  width: 100%;
}

.cta-hero__avatar-wrap {
  flex-shrink: 0;
}

.cta-hero__avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-hero__text {
  color: var(--color-white);
}

.cta-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-hero__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-light);
  border: 1px solid var(--color-accent);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cta-hero__tag:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer__text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent-light);
  padding-left: 8px;
}

.footer__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer__social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
  color: var(--color-secondary);
  cursor: pointer;
}

.footer__bottom a:hover {
  color: var(--color-secondary-light);
}

/* ============================================
   HERO BULLETS & MICROCOPY
   ============================================ */
.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 520px;
  text-align: left;
}

.hero__bullets li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero__bullets li:last-child {
  border-right: none;
}

/* Ícone dourado inline — sem position:absolute */
.hero__bullets li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #C8860A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.hero__microcopy {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
}

.hero__microcopy a {
  color: var(--color-accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__microcopy a:hover {
  color: var(--color-white);
}

/* ============================================
   PROBLEM SECTION (split layout: image + text)
   ============================================ */
.problem-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.problem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  will-change: transform, opacity;
}

.problem-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.problem-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.problem-split__content {
  max-width: 500px;
}

.problem-split__copy {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.problem-split__copy--strong {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.15rem;
  margin-top: 8px;
  position: relative;
  padding-left: 20px;
}

.problem-split__copy--strong::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: calc(100% - 8px);
  background: var(--color-accent);
  border-radius: 2px;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
}

.solution-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.solution-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.2;
}

.solution-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.solution-content strong {
  color: var(--color-text);
}

.solution-section__cta {
  margin-top: 24px;
  padding: 16px 36px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  will-change: transform;
}


/* ============================================
   ABOUT-CARD STEP LABEL
   ============================================ */
.about-card__step {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  background: rgba(192, 57, 43, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

/* ============================================
   PRICING SECTION (replaces events)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  justify-items: center;
}

.pricing-card {
  background-color: var(--color-dark-surface);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, rgba(202, 138, 4, 0.08) 0%, var(--color-dark-surface) 40%);
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-dark);
  background: var(--color-accent-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.pricing-card__header {
  margin-bottom: 20px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
}

.pricing-card__price-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.pricing-card__urgency {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card__features li svg {
  flex-shrink: 0;
  color: #1DB954;
}

.pricing-card__use-cases {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.pricing-card__btn {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
}

.faq-item__question:hover {
  color: var(--color-secondary);
}

.faq-item__answer {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA HERO BUTTON
   ============================================ */
.cta-hero__btn {
  padding: 16px 40px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

/* ============================================
   MODERN SECTION EFFECTS
   ============================================ */

/* --- Problem Section: gradient orb + diagonal divider --- */
.problem-section {
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.problem-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.problem-split__image {
  position: relative;
}

.problem-split__image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

/* --- Solution Section: subtle pattern + gradient accent --- */
.solution-section {
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(202, 138, 4, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192, 57, 43, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.solution-title {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-section__cta {
  position: relative;
  overflow: hidden;
}

.solution-section__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.solution-section__cta:hover::after {
  left: 120%;
}

/* --- How it Works: connecting line between cards + glow badges --- */
.about-card__icon-badge {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-card:hover .about-card__icon-badge {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.about-card__step {
  transition: background var(--transition-fast), color var(--transition-fast);
}

.about-card:hover .about-card__step {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* --- Pricing: glow effect on featured card + shimmer on buttons --- */
.pricing-card--featured {
  position: relative;
}

.pricing-card--featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary), var(--color-accent));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(8px);
}

.pricing-card--featured:hover::after {
  opacity: 0.4;
}

.pricing-card__btn {
  position: relative;
  overflow: hidden;
}

.pricing-card__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.5s ease;
}

.pricing-card__btn:hover::after {
  left: 120%;
}

.pricing-card__badge {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- Testimonials: subtle bg pattern --- */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(202, 138, 4, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(192, 57, 43, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* --- FAQ: hover glow + smooth open animation --- */
.faq-item {
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(202, 138, 4, 0.25);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--color-accent);
}

.faq-item__answer {
  animation: faqSlideIn 0.3s ease-out;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- CTA Final: enhanced overlay with animated gradient --- */
.cta-hero__overlay {
  background: linear-gradient(135deg,
    rgba(26, 26, 46, 0.75) 0%,
    rgba(139, 69, 19, 0.55) 50%,
    rgba(26, 26, 46, 0.7) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-hero__btn {
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.cta-hero__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.6s ease;
}

.cta-hero__btn:hover::after {
  left: 120%;
}

/* --- Section divider: curved wave between sections --- */
.problem-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

/* --- Global: section header icon spin on hover --- */
.section-header__icon {
  transition: transform 0.5s ease, color var(--transition-fast);
}

.section-header:hover .section-header__icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.section-header__dash {
  transition: width var(--transition-normal), background-color var(--transition-fast);
}

.section-header:hover .section-header__dash {
  width: 80px;
  background-color: var(--color-accent);
}

/* --- Global: smooth entry for about cards --- */
.about-card {
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.about-card:hover::after {
  transform: scaleX(1);
}

/* --- Pricing section: decorative gradient orbs --- */
.events-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Footer: top gradient glow line --- */
.footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), var(--color-accent), var(--color-secondary), transparent);
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .navbar__nav {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  /* Mobile nav overlay */
  .navbar__nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(26, 26, 46, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    backdrop-filter: blur(16px);
  }

  .navbar__nav.open .navbar__link {
    font-size: 1.2rem;
    color: var(--color-white);
  }

  .about-grid,
  .events-grid,
  .blog-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-split {
    gap: 40px;
  }

  .cta-hero__content {
    flex-direction: column;
    text-align: center;
  }

  .cta-hero__desc {
    margin: 0 auto 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .navbar {
    top: 0;
    padding: calc(6px + env(safe-area-inset-top, 0px)) 16px 6px;
    height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    background: linear-gradient(to bottom, rgba(42, 19, 15, 0.98) 0%, rgba(26, 15, 14, 0.98) 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  }

  .navbar.scrolled {
    background: linear-gradient(to bottom, rgba(42, 19, 15, 0.98) 0%, rgba(26, 15, 14, 0.98) 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  }

  .navbar.scrolled .navbar__logo-icon,
  .navbar.scrolled .navbar__logo-text,
  .navbar.scrolled .navbar__search-btn {
    color: var(--color-white);
  }

  .navbar.scrolled .navbar__burger span {
    background-color: var(--color-white);
  }

  .navbar__logo-icon {
    width: 36px;
    height: 36px;
  }

  .navbar__logo-text {
    font-size: 0.76rem;
  }

  .navbar__actions .btn--primary {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .hero__content {
    width: 100%;
    max-width: 620px;
    padding: 0 18px;
  }

  .hero__title {
    font-size: clamp(1.95rem, 7vw, 2.4rem);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero__bullets {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero__bullets li {
    font-size: 0.84rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    gap: 10px;
  }

  .hero__cta-main {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: row;
    gap: 14px;
    padding: 12px 14px;
    margin-top: 24px;
  }

  .hero__trust-divider {
    width: 1px;
    height: 32px;
  }

  .hero__trust-number {
    font-size: 1.15rem;
  }

  .hero__trust-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .hero__player {
    max-width: 100%;
    margin-top: 18px;
  }

  .hero__player-cover {
    width: 56px;
    height: 56px;
  }

  .hero__player-controls {
    gap: 12px;
  }

  .section-header__title {
    font-size: 1.7rem;
  }

  .solution-title {
    font-size: 1.7rem;
  }

  .problem-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-split__image {
    max-height: 280px;
    overflow: hidden;
    border-radius: 16px;
  }

  .problem-split__image img {
    min-height: 200px;
    max-height: 280px;
  }

  .problem-split__content .section-header__title {
    font-size: 1.4rem;
  }

  .problem-split__copy {
    font-size: 0.92rem;
  }

  .about-grid,
  .events-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .testimonials-section .section-header__subtitle {
    max-width: 520px;
    font-size: 0.9rem;
    line-height: 1.45;
    padding: 0 12px;
  }

  .testimonial-card__text {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .testimonial-card__body {
    padding: 16px;
    gap: 10px;
  }

  .flipcards-cta .btn {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .flipcards-cta p {
    max-width: 300px;
    font-size: 0.82rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-hero {
    height: auto;
    padding: 80px 0;
  }

  .cta-hero__avatar {
    width: 120px;
    height: 120px;
  }

  .event-card__actions {
    flex-direction: column;
  }

  .footer {
    padding: 56px 0 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding-bottom: 28px;
    align-items: start;
  }

  .footer__grid > * {
    min-width: 0;
  }

  .footer__col-title {
    font-size: 0.92rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .footer__col-title::after {
    width: 28px;
  }

  .footer__text {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .footer__link {
    font-size: 0.76rem;
    line-height: 1.4;
    padding: 4px 0;
    align-items: flex-start;
  }

  .footer__link svg {
    margin-top: 2px;
  }

  .footer__social {
    margin-top: 12px;
    gap: 8px;
  }

  .footer__social-link {
    width: 34px;
    height: 34px;
  }

  .footer__social-link svg {
    width: 16px;
    height: 16px;
  }

  .footer__bottom {
    padding: 18px 0 22px;
    font-size: 0.7rem;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile touch devices: keep testimonials at 2-up even when the viewport is wider */
@media (max-width: 1024px) and (hover: none) and (pointer: coarse) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .testimonial-card__text {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .testimonial-card__body {
    padding: 14px;
  }
}

/* Extra mobile density adjustments — 480px */
@media (max-width: 480px) {
  /* Hero — reduce vertical density */
  .navbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
  }
  .hero__bullets li {
    font-size: 0.85rem;
    padding-left: 24px;
    border-right: none;
  }
  .hero__cta-group {
    gap: 10px;
  }
  .hero__cta-main {
    padding: 15px 18px;
    font-size: 0.88rem;
  }
  .hero__trust {
    gap: 12px;
    padding: 10px 14px;
  }
  .hero__trust-number {
    font-size: 1.1rem;
  }
  .hero__trust-label {
    font-size: 0.6rem;
  }
  /* Player more compact */
  .hero__player {
    margin-top: 16px;
    max-width: 320px;
    padding: 14px 16px;
  }
  .hero__player-title {
    font-size: 0.85rem;
  }

  .footer {
    padding: 48px 0 0;
  }

  .footer__grid {
    gap: 14px 12px;
    padding-bottom: 24px;
  }

  .footer__col-title {
    font-size: 0.86rem;
    margin-bottom: 10px;
    padding-bottom: 7px;
  }

  .footer__col-title::after {
    width: 24px;
  }

  .footer__text,
  .footer__link {
    font-size: 0.72rem;
  }

  .footer__social {
    margin-top: 10px;
  }

  .footer__social-link {
    width: 32px;
    height: 32px;
  }

  .footer__bottom {
    padding: 16px 0 18px;
    font-size: 0.66rem;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .hero__title {
    font-size: 1.72rem;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero__subtitle {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .hero__bullets {
    margin-bottom: 18px;
  }

  .hero__cta-main {
    font-size: 0.84rem;
    padding: 14px 16px;
  }

  .about-card__body {
    padding: 20px 16px;
  }

  .event-card {
    padding: 24px 18px;
  }

  .problem-split {
    gap: 16px;
  }

  .problem-split__image img {
    min-height: 180px;
  }

  .problem-split__content .section-header__title {
    font-size: 1.2rem;
  }

  .problem-split__copy {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .problem-split__copy--strong {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonials-section .section-header__subtitle {
    font-size: 0.82rem;
  }

  .testimonial-card__text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* ============================================================
   ORDER FORM — shared styles (used by both order.html and modal)
   ============================================================ */
.order-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.order-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.order-card__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

.order-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 8px;
}
.order-tier-badge--standard {
  background: #EFF6FF;
  color: #1D4ED8;
}
.order-tier-badge--priority {
  background: #FEF9C3;
  color: #854D0E;
}

.order-form { display: flex; flex-direction: column; gap: 22px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-group--row { grid-template-columns: 1fr; }
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-label span { color: var(--color-text-muted); font-weight: 400; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-light); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139,69,19,0.1);
}
.form-input.error,
.form-textarea.error {
  border-color: var(--color-secondary);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.form-field-error {
  font-size: 0.8rem;
  color: var(--color-secondary);
  margin-top: 2px;
  display: none;
}

/* US phone: +1 prefix fixo + máscara (999) 999-9999 — ver phone-us.js */
.phone-us-field {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  background: var(--color-white);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-us-field:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.phone-us-field:has(.form-input.error) {
  border-color: var(--color-secondary);
  box-shadow: none;
}
.phone-us-prefix {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-right: 1px solid var(--color-border);
  user-select: none;
  min-height: 44px;
  min-width: 2.5rem;
}
.phone-us-field .phone-us-national {
  flex: 1;
  min-width: 0;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.phone-us-field .phone-us-national:focus {
  outline: none;
  box-shadow: none;
}

.form-section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 4px 0;
}

.order-submit {
  width: 100%;
  padding: 17px 24px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.order-submit:hover:not(:disabled) {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}
.order-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.order-submit .spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.order-submit.loading .spinner { display: block; }
.order-submit.loading .btn-text { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

.order-error {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.order-pricing-summary {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.order-pricing-summary__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.order-pricing-summary__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}
.order-pricing-summary__delivery {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.order-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-top: 10px;
}

.order-modal__mobile-cta-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.order-modal__mobile-cta-bar .order-submit {
  margin-top: 0;
}

.order-modal__mobile-cta-bar .order-secure-note {
  margin-top: 0;
}

.order-modal__home-link {
  display: none;
  align-self: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.order-modal__home-link:hover {
  color: var(--color-primary);
  border-bottom-color: currentColor;
}

.order-modal__home-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   ORDER MODAL — dialog overlay on landing page
   ============================================================ */
.order-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 640px;
  width: calc(100% - 48px);
  max-height: 90dvh;
  margin: auto;
  border-radius: var(--radius-lg);
  overflow: visible;
  color: var(--color-text);
}

@media (min-width: 641px) {
  .order-modal {
    position: fixed;
    inset: 0;
  }
}

.order-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.order-modal[open] {
  animation: modalSlideIn var(--transition-normal) ease-out;
}
.order-modal.closing {
  animation: modalSlideOut 200ms ease-in forwards;
}
.order-modal.closing::backdrop {
  animation: modalFadeOut 200ms ease-in forwards;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modalSlideOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(16px) scale(0.97); }
}
@keyframes modalFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.order-modal__inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  overscroll-behavior: contain;
}

.order-modal__actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.order-modal__audio-toggle {
  appearance: none;
  border: 1px solid rgba(201, 166, 122, 0.28);
  background: rgba(248, 238, 226, 0.72);
  color: #8a5321;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.order-modal__audio-toggle:hover {
  background: rgba(248, 238, 226, 0.96);
  border-color: rgba(201, 166, 122, 0.4);
}

.order-modal__audio-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.order-modal__audio-icon--off {
  display: none;
}

.order-modal__audio-toggle.is-muted .order-modal__audio-icon--on {
  display: none;
}

.order-modal__audio-toggle.is-muted .order-modal__audio-icon--off {
  display: block;
}

.order-modal__close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
  z-index: 1;
}
.order-modal__close:hover {
  background: var(--color-border);
  color: var(--color-text);
}
.order-modal__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Hero microcopy: inline button — highlighted CTA */
.hero__microcopy-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--color-accent-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s, text-shadow 0.2s;
}
.hero__microcopy-btn:hover {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(202, 138, 4, 0.4);
}

/* ── Modal: Mobile fullscreen ── */
@media (max-width: 640px) {
  .order-modal {
    width: 100vw;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .order-modal__inner {
    border-radius: 0;
    padding: 32px 20px calc(168px + env(safe-area-inset-bottom, 0px));
    max-height: 100dvh;
    min-height: 100dvh;
  }

  .order-modal__home-link {
    display: inline-block;
  }

  .order-modal__close {
    top: 12px;
    right: 12px;
  }

  .order-modal__actions {
    top: 12px;
    right: 12px;
    gap: 8px;
  }

  .order-modal__audio-toggle {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  /* iOS Safari zooms focused inputs below 16px; keep modal fields at app-like scale on mobile. */
  .order-modal .form-label {
    font-size: 0.95rem;
  }

  .order-modal .form-input,
  .order-modal .form-select,
  .order-modal .form-textarea,
  .order-modal .phone-us-prefix {
    font-size: 16px;
  }

  .order-modal .form-input,
  .order-modal .form-select,
  .order-modal .form-textarea {
    padding: 14px 16px;
  }

  .order-modal .form-hint,
  .order-modal .form-field-error,
  .order-modal .order-pricing-summary__label,
  .order-modal .order-pricing-summary__delivery,
  .order-modal .order-secure-note {
    font-size: 0.9rem;
  }

  .order-modal__mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    margin-top: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 18%, #fff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.1);
  }

  .order-modal .order-submit {
    position: static;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: none;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   HERO SAMPLE AUDIO BUTTON
   ============================================ */
.hero__sample-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background-color: rgba(232, 228, 225, 0.95);
  border-radius: 9999px;
  color: #2D3748;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__sample-btn:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
}
.hero__sample-icon {
  width: 32px;
  height: 32px;
  background-color: #B54F27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero__sample-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-left: 2px;
}
.hero__sample-btn.playing .hero__sample-icon svg {
  margin-left: 0;
}

/* ============================================
   HERO SOCIAL PROOF — pill card (light)
   ============================================ */
.hero__social-proof {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero__sp-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero__sp-stars svg {
  width: 22px;
  height: 22px;
  color: #EAB308;
  flex-shrink: 0;
}

/* Row 2: avatars + label side by side */
.hero__sp-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__sp-avatars {
  display: flex;
  align-items: center;
}

.hero__sp-avatar {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -9px;
  flex-shrink: 0;
  background-size: 200% 200%;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero__sp-avatar:first-child {
  margin-left: 0;
}

.hero__sp-avatar--count {
  background: rgba(0,0,0,0.45) !important;
  background-image: none !important;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.3px;
}

.hero__sp-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero__sp-label strong {
  font-weight: 700;
  color: #ffffff;
}

.flipcards-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 48px;
  gap: 16px;
}
