/* ==========================================================================
   DESIGN SYSTEM - O MÍNIMO QUE VOCÊ PRECISA SABER SOBRE A FÉ CATÓLICA
   Especialista: Ariel Lazari | Catedral Digital
   ========================================================================== */



:root {
  /* Cores Principais (Tons Terrosos Sacros & Ouro) */
  --bg-main: #0B0807;
  --bg-surface: #14100E;
  --bg-card: #1C1613;
  --bg-card-hover: #261E1A;
  --bg-glass: rgba(28, 22, 19, 0.85);
  
  --gold-primary: #D4AF37;
  --gold-light: #F4E2A1;
  --gold-dark: #A38018;
  --gold-gradient: linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #9E7D1A 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFF0B2 0%, #E0BB43 50%, #B08D23 100%);
  --gold-glow: rgba(212, 175, 55, 0.22);
  --gold-border: rgba(212, 175, 55, 0.28);

  --red-sacred: #8B1E1E;
  --red-gradient: linear-gradient(135deg, #A82424 0%, #751818 100%);
  
  --text-bright: #FCFAF7;
  --text-body: #D6CEC4;
  --text-muted: #9E9486;
  --text-gold: #E5C365;

  /* Tipografia */
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Sombras e Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--text-gold);
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center {
  text-align: center;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(180deg, #1E1714 0%, #120D0B 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding: 10px 16px;
  text-align: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.top-bar__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #F0E6D2;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.top-bar__text strong {
  color: var(--gold-primary);
  font-weight: 700;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.countdown__title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
}

.countdown__box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-border);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--gold-light);
  font-size: 0.9rem;
  min-width: 32px;
  text-align: center;
}

/* Header & Logo */
.site-header {
  padding: 24px 0 12px;
  text-align: center;
  position: relative;
}

.site-header__logo {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* Hero Section */
.hero {
  position: relative;
  padding: 32px 0 0;
  background: #000;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(11, 8, 7, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.75;
  filter: brightness(0.85) contrast(1.05);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__photo-cutout {
  max-width: 100%;
  max-height: 540px;
  height: auto;
  display: block;
  margin: 0 auto;
  vertical-align: bottom;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85));
  position: relative;
  z-index: 2;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  width: 100%;
}

.hero__title-line1 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--text-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__title-line2 {
  font-family: var(--font-heading);
  font-size: clamp(1.0rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero__title-line3 {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.8vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.9;
}

.hero__title-line4 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.8vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.85));
}

.hero__subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 28px;
  text-align: center;
  max-width: 680px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold-primary);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero__highlights {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-body);
}

.hero__check-icon {
  width: 22px;
  height: 22px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hero__media {
  position: relative;
}

.hero__media-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: var(--bg-card);
}

.hero__bg-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero__media-wrapper:hover .hero__bg-img {
  transform: scale(1.02);
}

.hero__media-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(14, 11, 9, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.hero__media-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

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

/* Call to Action Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  padding: 18px 24px;
  background: var(--gold-gradient);
  color: #0E0B09;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.88rem, 1.4vw, 1.12rem);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  background: var(--gold-gradient-hover);
}

.btn-cta__subtext {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 3px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero__guarantee-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-header__subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: block;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Topics Sticky Scroll Section */
.topics-section {
  padding: 90px 0;
  background: var(--bg-surface);
  position: relative;
}

.topics-sticky-layout {
  display: block;
  width: 100%;
}

.topics-showcase-wrapper {
  display: none !important;
}

.topics-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  padding-left: 0;
  width: 100%;
}

.topics-timeline__line,
.topic-reveal-item__indicator {
  display: none !important;
}

.topic-reveal-item {
  position: relative;
  opacity: 1 !important;
  filter: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  background: #140F0D;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.topic-reveal-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.2);
}

.topic-reveal-item__mobile-img {
  display: block !important;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.topic-reveal-item__number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 8px;
}

.topic-reveal-item__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
  transition: var(--transition);
}

.topic-reveal-item--active .topic-reveal-item__title {
  color: var(--gold-light);
}

.topic-reveal-item__desc {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Sticky Showcase Right Card */
.topics-showcase-wrapper {
  position: relative;
}

.topics-showcase-card {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transition: var(--transition);
}

.topics-showcase-card__image-container {
  position: relative;
  overflow: hidden;
}

.topics-showcase-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.topics-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 11, 9, 0.15) 0%, rgba(14, 11, 9, 0.95) 80%);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.topics-showcase-card__badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(212, 175, 55, 0.12);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  border: 1px solid var(--gold-border);
}

.topics-showcase-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
  line-height: 1.25;
}

.topics-showcase-card__desc {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.6;
  opacity: 0.95;
}

/* Professor / Bio Section */
.prof-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 30%, rgba(139, 30, 30, 0.12) 0%, rgba(11, 8, 7, 0) 70%);
}

.prof-container {
  max-width: 1100px;
  margin: 0 auto;
}

.prof-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.prof-header-mobile {
  display: none;
}

.prof-header-desktop {
  display: block;
}

.prof-media-header {
  margin: 0;
  text-align: center;
}

.prof-photo-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  margin: 0 auto;
  display: block;
}

.prof-bio-details {
  text-align: left;
}

.prof-bio__lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: italic;
}

.prof-bio__text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.authority-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.authority-badge {
  background: rgba(28, 22, 19, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.authority-badge__icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.authority-badge__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
}

.authority-badge__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Schedule Section */
.schedule-section {
  padding: 90px 0;
  background: var(--bg-surface);
}

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

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.schedule-card__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-gradient);
  color: #0E0B09;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-card__day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.schedule-block {
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.schedule-block:last-child {
  padding-bottom: 0;
}

.schedule-block__time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-block__desc {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Pricing / Offer Section */
.offer-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, rgba(11, 8, 7, 0) 80%);
  position: relative;
}

.offer-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(180deg, #241D19 0%, #15100E 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 175, 55, 0.2);
  text-align: center;
  position: relative;
}

.offer-card__ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-gradient);
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(139, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-bright);
  margin: 16px 0 28px;
}

.offer-checklist {
  list-style: none;
  text-align: left;
  max-width: 580px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  color: var(--text-bright);
}

.offer-price {
  margin: 36px 0 28px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  border: 1px dashed var(--gold-border);
}

.offer-price__anchor {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer-price__tag {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin: 8px 0;
}

.offer-price__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Guarantee Box */
.guarantee-box {
  margin-top: 48px;
  padding: 28px;
  background: rgba(28, 22, 19, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-box__badge {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0E0B09;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.guarantee-box__badge-num {
  font-size: 1.8rem;
}

.guarantee-box__badge-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-box__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.guarantee-box__desc {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background: var(--bg-surface);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item--active {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-bright);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item--active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-gradient);
  color: #0E0B09;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item--active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

/* Floating Bottom Sticky Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 11, 9, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
  padding: 14px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.sticky-bar--visible {
  transform: translateY(0);
}

.sticky-bar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-bar__info {
  display: flex;
  flex-direction: column;
}

.sticky-bar__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
}

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

.sticky-bar__btn {
  max-width: 280px;
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  background: #080605;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.site-footer__link {
  color: var(--text-muted);
  transition: var(--transition);
}

.site-footer__link:hover {
  color: var(--gold-primary);
}

/* Animations */
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes shine {
  100% { left: 125%; }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero {
    padding: 0;
    min-height: calc(100vh - 42px);
    height: calc(100vh - 42px);
    max-height: calc(100vh - 42px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 0;
  }

  .hero__media {
    order: 1;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin-top: 0;
  }

  .hero__media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(11, 8, 7, 0) 0%, rgba(11, 8, 7, 0.75) 100%);
    pointer-events: none;
    z-index: 6;
  }

  .hero__photo-cutout {
    max-height: 100%;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    display: block;
    vertical-align: bottom;
    align-self: flex-end;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.9));
    position: relative;
    z-index: 5;
  }

  .hero__content {
    order: 2;
    position: relative;
    z-index: 7;
    padding: 8px 16px 0;
    margin-top: -20px;
    background: linear-gradient(180deg, rgba(11, 8, 7, 0) 0%, rgba(11, 8, 7, 0.85) 30%, #0B0807 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__badge {
    display: none !important;
  }

  .hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
    width: 100%;
  }

  .hero__title-line1 {
    font-size: clamp(0.7rem, 2.2vw, 0.95rem);
    letter-spacing: 0.24em;
    margin-bottom: 2px;
  }

  .hero__title-line2 {
    font-size: clamp(1.15rem, 3.8vw, 1.75rem);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }

  .hero__title-line3 {
    font-size: clamp(0.62rem, 1.8vw, 0.85rem);
    letter-spacing: 0.18em;
    margin-bottom: 2px;
  }

  .hero__title-line4 {
    font-size: clamp(1.8rem, 5.8vw, 2.8rem);
    letter-spacing: 0.02em;
  }

  .hero__subtitle {
    font-size: clamp(0.88rem, 2.8vw, 1.05rem);
    color: var(--gold-light);
    margin-bottom: 8px;
    line-height: 1.35;
    text-align: center;
  }

  .hero__description {
    font-size: clamp(0.8rem, 2.4vw, 0.92rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 12px;
    text-align: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 380px;
    padding: 14px 18px;
    font-size: clamp(0.82rem, 3.2vw, 1rem);
    white-space: nowrap;
    border-radius: var(--radius-md);
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__guarantee-strip {
    justify-content: center;
    font-size: 0.72rem;
    margin-top: 10px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .topics-sticky-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .topics-showcase-wrapper {
    display: none !important;
  }

  .topics-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
  }

  .topics-timeline__line,
  .topic-reveal-item__indicator {
    display: none !important;
  }

  .topic-reveal-item {
    position: relative !important;
    top: auto !important;
    opacity: 1 !important;
    filter: none !important;
    background: #140F0D !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 24px 20px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
    transform: none !important;
  }

  .topic-reveal-item__mobile-img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  }

  .topic-reveal-item--active {
    opacity: 1 !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.25) !important;
  }

  .prof-container {
    padding: 0 16px;
  }

  .prof-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .prof-header-mobile {
    display: block !important;
  }

  .prof-header-desktop {
    display: none !important;
  }

  .prof-bio-details {
    text-align: center;
  }

  .prof-photo-img {
    max-width: 100%;
  }

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

@media (min-width: 993px) {
  .hero {
    min-height: calc(100vh - 44px);
    height: calc(100vh - 44px);
    max-height: calc(100vh - 44px);
    padding: 0;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-bottom: 24px;
  }

  .hero__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: visible;
  }

  .hero__photo-cutout {
    max-height: calc(100vh - 40px);
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    vertical-align: bottom;
    align-self: flex-end;
    margin: 0 auto;
    transform: scale(1.06);
    transform-origin: bottom center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95));
  }

  .sticky-bar {
    display: none !important;
  }

  .prof-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 54px;
    align-items: center;
  }

  .prof-header-mobile {
    display: none !important;
  }

  .prof-header-desktop {
    display: block !important;
  }

  .prof-bio-details {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 10px 12px;
  }

  .top-bar__date-pill {
    font-size: 0.78rem;
    padding: 5px 10px;
    width: 100%;
  }

  .hero__photo-cutout {
    max-height: 340px;
  }

  .hero__title-line1 {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .hero__title-line2 {
    font-size: 1.25rem;
  }

  .hero__title-line3 {
    font-size: 0.68rem;
  }

  .hero__title-line4 {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 0.92rem;
  }

  .authority-badges {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 36px 20px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .sticky-bar__info {
    display: none;
  }

  .sticky-bar__btn {
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================================================
   ESTILOS DA LISTA DE ESPERA & MODAL POP-UP (Catedral Digital / Ariel Lazari)
   ========================================================================== */

/* Waitlist Card na Seção de Oferta */
.waitlist-card {
  background: rgba(28, 22, 19, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  margin: 32px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.waitlist-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.waitlist-card__price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.waitlist-card__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Modal Pop-up Component */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 4, 4, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.modal-active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.15);
  width: 100%;
  max-width: 480px;
  padding: 36px 28px;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.modal-active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  color: var(--gold-primary);
  transform: scale(1.1);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Modal Form Controls */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--gold-primary);
  pointer-events: none;
  opacity: 0.8;
}

.form-input {
  width: 100%;
  padding: 13px 14px 13px 44px;
  background: rgba(11, 8, 7, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder {
  color: rgba(214, 206, 196, 0.45);
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group.has-error .form-input {
  border-color: #e53e3e;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #fc8181;
  margin-top: 4px;
}

.form-group.has-error .form-error {
  display: block;
}

.btn-submit-waitlist {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
  border: none;
}

.modal-footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* Modal Success State */
.modal-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.modal-success__icon {
  width: 68px;
  height: 68px;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.modal-success__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-bright) !important;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.modal-success__desc {
  font-size: 1rem;
  color: var(--text-body) !important;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.modal-success__desc strong {
  color: var(--text-gold) !important;
  font-weight: 600;
}


/* Spinner CSS */
.spinner {
  animation: rotate 1.4s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

.spinner .path {
  stroke: #14100E;
  stroke-linecap: round;
  animation: dash 1.4s ease-in-out infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

button.btn-cta {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 480px) {
  .modal-card {
    padding: 28px 18px;
  }
  .modal-title {
    font-size: 1.25rem;
  }
}

