@import url("index.css");

/* ===================== LP HERO (centralizado, sem foto) ===================== */
.hero-lp {
  min-height: calc(100svh - var(--bars-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(60px, 8vh, 100px) clamp(28px, 10vw, 180px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,169,106,0.18), transparent 55%),
    linear-gradient(to bottom, var(--petrol), var(--petrol2));
}

.hero-lp .tag-hero {
  align-self: center;
  margin-bottom: 32px;
}

.hero-lp h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 900px;
}

.hero-lp .hero-sub {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.75;
  font-weight: 300;
  color: #DCE3E7;
  max-width: 660px;
  margin: 0 auto;
}

.hero-lp .hero-ctas {
  justify-content: center;
  margin-top: 32px;
}

.hero-lp .hero-nav {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-lp {
    padding: 52px 24px 64px;
    min-height: auto;
  }
  .hero-lp .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    gap: 12px;
  }
  .hero-lp .hero-ctas .btn {
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding: 15px 26px;
    font-size: 15px;
  }
}

/* ===================== LP STEPS ===================== */
.lp-steps-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.lp-steps-head .tag {
  border-color: rgba(14,36,48,.25);
  color: var(--petrol);
  margin-bottom: 22px;
}

.lp-steps-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--petrol);
  margin: 0 0 14px;
  font-weight: 500;
}

.lp-steps-head p {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  color: #4a5965;
  font-weight: 300;
  margin: 0;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 52px auto 0;
  max-width: 1280px;
}

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

.lp-step {
  text-align: center;
  padding: 0 8px;
}

.lp-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,106,0.45);
  background: rgba(200,169,106,0.07);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background .25s, border-color .25s;
}

.lp-step:hover .lp-step-num {
  background: rgba(200,169,106,0.15);
  border-color: rgba(200,169,106,0.7);
}

.lp-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--petrol);
  margin: 0 0 12px;
  line-height: 1.2;
}

.lp-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5965;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1100px) {
  .lp-steps,
  .lp-steps.steps-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .lp-steps,
  .lp-steps.steps-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===================== IMAGENS DE FUNDO ===================== */
.pain {
  background:
    radial-gradient(circle at 10% 0%, rgba(200,169,106,0.07), transparent 38%),
    radial-gradient(circle at 95% 100%, rgba(200,169,106,0.05), transparent 42%),
    linear-gradient(to bottom, rgba(11,27,36,0.87), rgba(14,36,48,0.82)),
    url('../imagens/avaliacao_medica.jpg') center / cover no-repeat;
}

.differentials {
  background:
    radial-gradient(circle at 80% 100%, rgba(200,169,106,0.10), transparent 42%),
    linear-gradient(to bottom, rgba(14,36,48,0.90), rgba(11,27,36,0.86)),
    url('../imagens/medicina_legal.jpg') center / cover no-repeat;
}
