/* ==========================================================================
   V10 - "Premium White" — Clean, sophisticated, LIGHT background
   Colors: #f5f5f5 bg, #ffffff surface, #c9a84c gold accent, #1a1a1a text, #666 muted
   Fonts: Cormorant Garamond (headings) + Karla (body)
   ========================================================================== */

:root {
  --color-bg: #f5f5f5;
  --color-surface: #ffffff;
  --color-accent: #c9a84c;
  --color-accent-alpha: rgba(201, 168, 76, 0.4);
  --color-accent-light: rgba(201, 168, 76, 0.1);
  --color-text: #1a1a1a;
  --color-muted: #666666;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Karla', sans-serif;
  --section-padding-mobile: 100px 0;
  --section-padding-desktop: 140px 0;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}

/* ==========================================================================
   Light Theme Overrides for Shared Components
   ========================================================================== */

/* Carousel dots - dark on light */
.carousel__dot {
  background: rgba(0, 0, 0, 0.15);
}

.carousel__dot.active {
  background: var(--color-accent);
}

/* Carousel arrows */
.carousel__arrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--color-text);
}

.carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.15);
}

/* Accordion borders - dark on light */
.accordion__item {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

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

.accordion__icon::before,
.accordion__icon::after {
  background: var(--color-accent);
}

.accordion__content-inner {
  color: var(--color-muted);
}

/* Image placeholder - light theme */
.img-placeholder {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  color: var(--color-muted);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Video placeholder - light theme */
.video-wrapper {
  background: rgba(0, 0, 0, 0.03);
}

.video-placeholder__icon {
  background: rgba(201, 168, 76, 0.2);
}

.video-placeholder__icon::after {
  border-left-color: var(--color-accent);
}

.video-placeholder span {
  color: var(--color-muted);
}

/* Countdown - light theme */
.countdown__separator {
  color: var(--color-accent);
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.subsection-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 48px 0 28px;
  color: var(--color-text);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: var(--section-padding-mobile);
  text-align: center;
  background: var(--color-surface);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 40px;
}

.hero__countdown-wrapper {
  margin-bottom: 40px;
}

.hero__countdown-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero .countdown {
  gap: 16px;
}

.hero .countdown__block {
  background: var(--color-bg);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 16px 12px;
  min-width: 64px;
}

.hero .countdown__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.hero .countdown__label {
  color: var(--color-muted);
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.hero .countdown__separator {
  color: var(--color-accent);
  font-size: 1.8rem;
  align-self: center;
}

.hero__photo {
  max-width: 240px;
  margin: 0 auto 40px;
}

.hero__photo .img-placeholder {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero__limited {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 32px;
}

/* ==========================================================================
   CTA Button
   ========================================================================== */

.cta-btn {
  background: var(--color-accent);
  color: var(--color-surface);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 18px 40px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  display: inline-block;
  text-transform: uppercase;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.cta-btn:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

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

/* ==========================================================================
   PERSUASION
   ========================================================================== */

.persuasion {
  padding: var(--section-padding-mobile);
  text-align: center;
}

.persuasion .video-wrapper {
  margin-bottom: 48px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

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

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  font-size: 0.6rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Guarantee */
.guarantee {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  margin: 48px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.guarantee__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.guarantee__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.guarantee__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */

.content-section {
  padding: var(--section-padding-mobile);
  text-align: center;
  background: var(--color-surface);
}

/* Module Cards */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.module-card {
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.module-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.module-card__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

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

.module-card__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* IA Section */
.ia-section {
  background: var(--color-bg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 40px 28px;
  margin-bottom: 48px;
  text-align: center;
}

.ia-section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.ia-section__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* Pricing */
.pricing {
  background: var(--color-bg);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  padding: 40px 28px;
  margin-bottom: 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.pricing__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.pricing__from {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.pricing__old {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.pricing__for {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.pricing__installment {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.pricing__value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.pricing__divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 16px auto;
}

.pricing__cash {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.pricing__savings {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   SPECIALIST
   ========================================================================== */

.specialist {
  padding: var(--section-padding-mobile);
}

.specialist__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.specialist__photo {
  max-width: 260px;
  width: 100%;
}

.specialist__photo .img-placeholder {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.specialist__bio {
  text-align: center;
}

.specialist__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}

.specialist__bio > p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.specialist__credentials {
  text-align: left;
  margin-bottom: 32px;
}

.specialist__credentials li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.5;
}

.specialist__credentials li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: var(--section-padding-mobile);
  background: var(--color-surface);
}

.faq .accordion {
  max-width: 700px;
  margin: 0 auto 48px;
}

.faq .accordion__trigger {
  font-size: 1rem;
  font-weight: 500;
  padding: 24px 0;
}

.faq .accordion__content-inner {
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__final-cta {
  text-align: center;
  margin-top: 48px;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-surface);
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer__divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 20px;
}

.footer__copy {
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.footer__disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer__legal {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   RESPONSIVE — Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }

  .hero__title {
    font-size: 3.4rem;
  }

  .hero__name {
    font-size: 2.2rem;
  }

  .hero .countdown__number {
    font-size: 2.8rem;
  }

  .hero .countdown__block {
    min-width: 80px;
    padding: 20px 16px;
  }

  .hero__photo {
    max-width: 280px;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing__value {
    font-size: 3.2rem;
  }

  .specialist__content {
    flex-direction: row;
    align-items: flex-start;
  }

  .specialist__photo {
    max-width: 280px;
  }

  .specialist__bio {
    text-align: left;
    flex: 1;
  }

  .cta-btn {
    width: auto;
    max-width: none;
    padding: 18px 48px;
  }

  .subsection-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   RESPONSIVE — Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  :root {
    --section-padding-mobile: 140px 0;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__name {
    font-size: 2.6rem;
  }

  .hero .countdown__number {
    font-size: 3.2rem;
  }

  .hero .countdown__block {
    min-width: 96px;
    padding: 24px 20px;
  }

  .hero__photo {
    max-width: 300px;
  }

  .modules-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .specialist__photo {
    max-width: 340px;
  }

  .pricing__value {
    font-size: 3.6rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 20px 56px;
  }

  .subsection-title {
    font-size: 2rem;
  }

  .faq__closing-text {
    font-size: 1.8rem;
  }
}
