/* ============================================
   LANDING PAGE — IMERSÃO ALMA E PRESENÇA
   Design: Dark premium com acentos dourados
   ============================================ */

/* ---------- Custom Properties ---------- */
.lp-imersao {
  --lp-gold: #c9a84c;
  --lp-gold-light: #e8c547;
  --lp-gold-dark: #a68a3e;
  --lp-gold-glow: rgba(201, 168, 76, 0.35);

  --lp-purple: #6b3fa0;
  --lp-purple-deep: #1e1340;
  --lp-purple-light: #8b5cf6;

  --lp-bg-deep: #0a0a0f;
  --lp-bg-section: #0e0d16;
  --lp-bg-section-alt: #12111a;
  --lp-bg-card: #18162280;

  --lp-text: #f5f0e8;
  --lp-text-secondary: #d4ccba;
  --lp-text-muted: #9a9088;

  --lp-radius: 16px;
  --lp-radius-sm: 10px;
  --lp-transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base / Scope Reset ---------- */
.lp-imersao {
  background-color: var(--lp-bg-deep);
  color: var(--lp-text);
  font-family: 'Inter', var(--body-font), system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.lp-imersao *,
.lp-imersao *::before,
.lp-imersao *::after {
  box-sizing: border-box;
}

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

/* ---------- Container ---------- */
.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Shared Section Spacing ---------- */
.lp-section {
  padding: 80px 0;
  position: relative;
}

.lp-section--alt {
  background-color: var(--lp-bg-section-alt);
}

/* ---------- Section Titles ---------- */
.lp-section__title {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--lp-text);
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.25;
}

.lp-section__title em {
  color: var(--lp-gold);
  font-style: italic;
}

.lp-section__subtitle {
  text-align: center;
  color: var(--lp-text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 50px;
}

/* ---------- Decorative Divider ---------- */
.lp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 50px auto;
  max-width: 260px;
}

.lp-divider::before,
.lp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
}

.lp-divider__star {
  color: var(--lp-gold);
  font-size: 1rem;
  line-height: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero-total {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 63, 160, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--lp-bg-deep) 0%, #0e0b1a 50%, var(--lp-bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero-total::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,255,255,0.12) 50%, transparent 50%),
    radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.08) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 72% 55%, rgba(255,255,255,0.1) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.06) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.09) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 90%, rgba(255,255,255,0.07) 50%, transparent 50%),
    radial-gradient(1px 1px at 10% 85%, rgba(255,255,255,0.08) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.1) 50%, transparent 50%);
  pointer-events: none;
  animation: lp-twinkle 6s ease-in-out infinite alternate;
}

.lp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 0px;
}

@keyframes lp-twinkle {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.lp-hero__kicker {
  font-family: 'Inter', var(--body-font), sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin: 0 0 24px;
}

.lp-hero__title {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 28px;
  color: var(--lp-text);
}

.lp-hero__title em {
  display: block;
  color: var(--lp-gold);
  font-style: italic;
  text-shadow: 0 0 40px var(--lp-gold-glow);
}

.lp-hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--lp-text-secondary);
  margin: 0 0 40px;
  line-height: 1.7;
  font-style: italic;
}

.lp-hero__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-gold-dark), var(--lp-gold-light));
  margin: 0 auto 30px;
  border-radius: 2px;
}

.lp-hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  z-index: 10;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--lp-text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: lp-bounce 2s ease-in-out infinite;
}

.lp-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--lp-gold), transparent);
}

@keyframes lp-bounce {
  0%, 100% { bottom: 30px; }
  50%      { bottom: 20px; }
}

/* ============================================
   HERO IMAGE (standalone section below hero)
   ============================================ */
.lp-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 24px 60px;
  margin-top: -60px;
}

.lp-hero-image__frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(201, 168, 76, 0.08);
}

.lp-hero-image__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 15, 0.6) 100%);
  pointer-events: none;
}

.lp-hero-image__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* Placeholder style (remove when image is added) */
.lp-hero-image__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--lp-purple-deep), #1a1330, #12111a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  text-align: center;
  padding: 20px;
}

/* ============================================
   PAIN / CHAMADO SECTION
   ============================================ */
.lp-pain {
  padding: 80px 0 60px;
  background-color: var(--lp-bg-section);
  position: relative;
}

.lp-pain__intro {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  text-align: center;
  color: var(--lp-text-secondary);
  margin: 0 0 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-style: italic;
}

.lp-pain__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.lp-pain__card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--lp-radius);
  padding: 36px 36px 36px 60px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--lp-text);
  line-height: 1.6;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.lp-pain__card::before {
  content: '\201C';
  position: absolute;
  left: 20px;
  top: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  color: var(--lp-gold);
  opacity: 0.5;
  line-height: 1;
}

.lp-pain__card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.lp-pain__origin {
  text-align: center;
  font-size: 1.1rem;
  color: var(--lp-text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.lp-pain__origin strong {
  color: var(--lp-gold);
  font-weight: 600;
}

/* ============================================
   ABOUT / O QUE É SECTION
   ============================================ */
.lp-about {
  padding: 80px 0;
  background-color: var(--lp-bg-deep);
}

.lp-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.lp-about__text p {
  font-size: 1.05rem;
  color: var(--lp-text-secondary);
  margin: 0 0 20px;
  line-height: 1.8;
}

.lp-about__text strong {
  color: var(--lp-text);
  font-weight: 600;
}

.lp-about__image-wrap {
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  max-width: 380px;
  margin: 0 auto;
}

.lp-about__image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Highlights strip */
.lp-about__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp-about__highlight {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--lp-radius-sm);
  transition: border-color 0.3s ease;
}

.lp-about__highlight:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.lp-about__highlight-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.lp-about__highlight-label {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.lp-about__highlight-value {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: 1.2rem;
  color: var(--lp-gold);
  font-weight: 600;
  display: block;
}

/* ============================================
   BONUSES SECTION
   ============================================ */
.lp-bonuses {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    var(--lp-bg-section-alt);
}

.lp-bonuses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.lp-bonus {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.lp-bonus:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
}

.lp-bonus__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.lp-bonus__title {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 12px;
}

.lp-bonus__desc {
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   MODULES TIMELINE
   ============================================ */
.lp-modules {
  padding: 80px 0;
  background-color: var(--lp-bg-deep);
}

.lp-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 50px;
}

.lp-modules__img {
  width: 100%;
  border-radius: var(--lp-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  margin-bottom: 40px;
}

/* Vertical line */
.lp-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    var(--lp-gold),
    rgba(201, 168, 76, 0.3) 50%,
    var(--lp-gold));
}

.lp-timeline__item {
  position: relative;
  margin-bottom: 40px;
}

.lp-timeline__item:last-child {
  margin-bottom: 0;
}

/* Circle marker */
.lp-timeline__marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-bg-deep);
  border: 2px solid var(--lp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lp-gold);
  z-index: 2;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.lp-timeline__item:hover .lp-timeline__marker {
  background: var(--lp-gold);
  color: var(--lp-bg-deep);
  box-shadow: 0 0 20px var(--lp-gold-glow);
}

.lp-timeline__card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.lp-timeline__item:hover .lp-timeline__card {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(6px);
}

.lp-timeline__number {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: 0.8rem;
  color: var(--lp-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px;
  font-weight: 600;
}

.lp-timeline__title {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 14px;
  line-height: 1.3;
}

.lp-timeline__desc {
  font-size: 0.95rem;
  color: var(--lp-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */
.lp-methodology {
  padding: 60px 0;
  background: var(--lp-bg-section-alt);
}

.lp-methodology__text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--lp-text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
}

.lp-methodology__text strong {
  color: var(--lp-gold);
  font-weight: 600;
  font-style: normal;
}

.lp-methodology__img {
  width: 100%;
  border-radius: var(--lp-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  margin-top: 40px;
}

/* ============================================
   ATTENTION SECTION
   ============================================ */
.lp-attention {
  padding: 70px 0;
  background-color: var(--lp-bg-deep);
}

.lp-attention__box {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 36px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--lp-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-attention__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-gold-dark), var(--lp-gold-light), var(--lp-gold-dark));
}

.lp-attention__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-weight: 600;
}

.lp-attention__text {
  font-size: 1.05rem;
  color: var(--lp-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.lp-attention__text strong {
  color: var(--lp-text);
}

/* ============================================
   CTA SECTION
   ============================================ */
.lp-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(107, 63, 160, 0.1) 0%, transparent 50%),
    var(--lp-bg-section);
  position: relative;
}

.lp-cta__title {
  font-family: 'Playfair Display', var(--heading-font), Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--lp-text);
  margin: 0 0 16px;
  line-height: 1.3;
}

.lp-cta__subtitle {
  font-size: 1rem;
  color: var(--lp-text-muted);
  margin: 0 0 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 56px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lp-bg-deep);
  background: linear-gradient(135deg, var(--lp-gold-dark), var(--lp-gold), var(--lp-gold-light));
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 4px 20px rgba(201, 168, 76, 0.3),
    0 0 60px rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}

.lp-cta__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.lp-cta__button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(201, 168, 76, 0.4),
    0 0 80px rgba(201, 168, 76, 0.15);
  color: var(--lp-bg-deep);
  text-decoration: none;
}

.lp-cta__button:hover::before {
  transform: translateX(100%);
}

/* Pulse ring animation */
.lp-cta__button-wrap {
  position: relative;
  display: inline-block;
}

.lp-cta__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  border: 2px solid var(--lp-gold);
  opacity: 0;
  animation: lp-pulse-ring 2.5s ease-out infinite;
}

@keyframes lp-pulse-ring {
  0%   { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.1);  opacity: 0; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.lp-fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--lp-transition), transform 0.8s var(--lp-transition);
}

.lp-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for child elements */
.lp-stagger > *:nth-child(1) { transition-delay: 0s; }
.lp-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.lp-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.lp-stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {

  .lp-container {
    padding: 0 40px;
  }

  .lp-section {
    padding: 100px 0;
  }

  .lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 92vh;
  }

  .lp-hero {
    min-height: auto;
    padding: 60px 0;
    text-align: left;
    justify-content: flex-start;
  }

  .lp-hero__line {
    margin: 0 0 30px 0;
  }

  .lp-hero-image {
    padding: 0;
    margin-top: 0;
    justify-content: flex-end;
  }

  .lp-hero-image__frame {
    max-width: 420px;
  }

  .lp-pain__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

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

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

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

  .lp-methodology__img {
    margin-top: 0;
  }

  .lp-timeline {
    padding-left: 60px;
  }

  .lp-timeline::before {
    left: 20px;
  }

  .lp-timeline__marker {
    left: -60px;
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {

  .lp-section {
    padding: 120px 0;
  }

  .lp-section {
    padding: 120px 0;
  }

  .lp-pain__card {
    padding: 40px 40px 40px 70px;
  }

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

  .lp-timeline {
    padding-left: 80px;
  }

  .lp-timeline::before {
    left: 28px;
  }

  .lp-timeline__marker {
    left: -80px;
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
  }

  .lp-timeline__card {
    padding: 36px 32px;
  }

  .lp-timeline__card {
    padding: 36px 32px;
  }

  .lp-cta {
    padding: 140px 0;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .lp-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lp-hero::before {
    animation: none;
  }
  .lp-hero__scroll-hint {
    animation: none;
  }
  .lp-cta__pulse {
    animation: none;
  }
}
