:root {
  --bg-color: #F4F1EC;
  --text-main: #1A1714;
  --text-sec: #6B6560;
  --accent: #8B1A1A;
  --accent-hover: #731313;
  --accent-sec: #C8941A;
  --white: #FFFFFF;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 10px 40px rgba(139, 26, 26, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hidden {
  display: none !important;
}

.hidden-delay {
  display: none !important;
}

/* Header / Hero */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.headline {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.subheadline {
  font-size: 1.125rem;
  color: var(--text-sec);
  font-weight: 400;
  margin-bottom: 12px;
}

.previous-episodes-notice {
  font-size: 14px;
  color: #9A9080;
  text-align: center;
}

.previous-link {
  color: var(--accent-sec);
  text-decoration: none;
}

/* Video Section */
.video-section {
  margin-bottom: 32px;
}

.video-wrapper {
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.1);
}

.video-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, #111 0%, #222 100%);
}

.play-button {
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-button::after {
  content: '';
  display: block;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}

.video-wrapper:hover .play-button {
  transform: scale(1.05);
  background-color: var(--accent-hover);
}

/* Urgency Section */
.urgency-section {
  margin-bottom: 48px;
}

.urgency-box {
  background-color: var(--white);
  border: 1px solid rgba(139, 26, 26, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.urgency-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background-color: var(--accent);
  border-radius: 12px 12px 0 0;
}

.timer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 12px;
}

.timer-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 10px rgba(139, 26, 26, 0.1);
}

.timer-subtitle {
  font-size: 0.875rem;
  color: var(--text-sec);
  max-width: 600px;
  margin: 0 auto;
}

.slots-remaining {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 16px;
  display: block;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 24px;
  background-color: rgba(200, 148, 26, 0.1);
  border-radius: 8px;
  color: var(--accent-sec);
}

.slots-progress-container {
  width: 100%;
  height: 8px;
  background-color: rgba(200, 148, 26, 0.2);
  border-radius: 4px;
  margin-top: 12px;
  overflow: hidden;
}

.slots-progress-bar {
  height: 100%;
  background-color: var(--accent);
  width: 100%;
  transition: width 0.5s ease;
  border-radius: 4px;
  transform-origin: left;
}

.slots-remaining span {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.75rem;
  margin-right: 6px;
}

/* Live Stats & Updating Animation */
.slots-remaining {
  position: relative;
}
.updating-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253, 251, 247, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  border-radius: inherit;
  backdrop-filter: blur(2px);
}
.slots-remaining.is-updating .updating-overlay {
  opacity: 1;
}
.updating-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(139, 26, 26, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.live-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 148, 26, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sec);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stat-item span[id] {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.pulse-dot.green {
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}
.pulse-dot.orange {
  background-color: #F59E0B;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-orange 2s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
@keyframes pulse-orange {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-bottom: 56px;
}

.cta-button {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 18px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
}

.cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 26, 26, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-guarantee {
  font-size: 0.875rem;
  color: var(--text-sec);
  margin-top: 12px;
}

.section-divider {
  border: none;
  border-top: 1px solid #D4CFC7;
  margin: 0 auto 56px;
  max-width: 600px;
}

/* Copy Section */
.copy-section {
  margin-bottom: 56px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.copy-section p {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* Guarantee Section */
.guarantee-section {
  margin-bottom: 56px;
}

.guarantee-box {
  background-color: var(--white);
  border: 1px solid rgba(200, 148, 26, 0.3);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-subtle);
}

.guarantee-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.guarantee-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.guarantee-text {
  font-size: 1rem;
  color: var(--text-sec);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 56px;
}

.faq-accordion {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-sec);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-sec);
  font-size: 1rem;
}

/* Pricing */
.price-display {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-anchor {
  display: block;
  font-size: 0.875rem;
  color: var(--text-sec);
  margin-bottom: 12px;
  padding: 6px 12px;
  background-color: rgba(0,0,0,0.03);
  border-radius: 4px;
}
.price-anchor del {
  color: #A09A90;
  font-weight: 600;
}
.price-label {
  display: block;
  font-size: 1.125rem;
  color: var(--text-main);
  margin-bottom: 4px;
}
.price-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price-fee {
  display: block;
  font-size: 0.85rem;
  color: var(--text-sec);
  margin-bottom: 8px;
  font-weight: 500;
}
.price-installments {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-sec);
}

/* Modules Section */
.modules-section {
  margin-bottom: 56px;
}
.modules-subtitle {
  font-size: 1rem;
  color: var(--text-sec);
  margin-bottom: 32px;
  font-weight: 400;
  text-align: center;
}
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.module-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background-color: var(--white);
  border-radius: 8px;
  border-left: 4px solid #E5E0D8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.module-item.highlight {
  border-left-color: var(--accent);
  background-color: rgba(139, 26, 26, 0.02);
}
@media (min-width: 600px) {
  .module-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .module-item:not(.highlight) {
    align-items: center;
  }
}
.module-number {
  font-weight: 800;
  color: var(--accent-sec);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-bottom: 8px;
}
@media (min-width: 600px) {
  .module-number {
    margin-bottom: 0;
    min-width: 80px;
  }
}
.module-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}
.module-item.highlight .module-title {
  margin-bottom: 8px;
}
.module-desc {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}
.testimonial-card {
  background-color: #FAF8F5;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--accent-sec);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-sec);
}

/* Dead Page */
.dead-content {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
}

.dead-headline {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dead-text {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.dead-subtext {
  font-size: 1.125rem;
  color: var(--text-sec);
  margin-bottom: 40px;
}

.waitlist-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.spam-notice {
  font-size: 0.875rem;
  color: var(--text-sec);
  margin-top: 8px;
}

/* Responsiveness */
@media (max-width: 600px) {
  .headline { font-size: 1.85rem; }
  .timer-display { 
    font-size: 2.1rem; 
    letter-spacing: -0.03em;
  }
  .slots-remaining {
    padding: 16px 12px;
  }
  .live-stats-bar {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    border-top: 1px solid rgba(200, 148, 26, 0.2);
    padding-top: 12px;
  }
  .guarantee-box { flex-direction: column; text-align: center; align-items: center; }
  .dead-headline { font-size: 2.2rem; }
}

@media (max-width: 400px) {
  .timer-display { font-size: 1.7rem; }
}
