/* ==========================================================================
   SEÇÃO 09B: TERAPIA RECORRENTE & CONTROLE DE GUIAS (Figma Node 837:1845)
   ========================================================================== */

.section-recorrencia {
  padding: 40px 0 60px;
  background-color: var(--bg-body, #ffffff);
}

.recorrencia-wrapper {
  background-color: #4E4E4E;
  border-radius: 55px;
  padding: 100px 86px 94px 114px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Título */
.recorrencia-title {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0;
  max-width: 900px;
}

/* Textos Introdutórios */
.recorrencia-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 980px;
}

.recorrencia-subtitle {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #FFFFFF;
  margin: 0;
}

.recorrencia-desc {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Grid de Soluções (2 Cards) */
.recorrencia-cards-grid {
  display: grid;
  grid-template-columns: 1fr 2.55fr;
  gap: 14px;
  align-items: stretch;
}

/* Card 1: Destaque Ciano */
.recorrencia-card-highlight {
  background-color: #A4F4ED;
  border-radius: 25px;
  padding: 36px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.recorrencia-card-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(164, 244, 237, 0.18);
}

.card-highlight-text {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: #4E4E4E;
  margin: 0;
}

/* Card 2: Lista de Benefícios */
.recorrencia-card-features {
  background-color: #5B5B5B;
  border-radius: 25px;
  padding: 36px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.recorrencia-card-features:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.recorrencia-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.recorrencia-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-bullet {
  color: #A4F4ED;
  font-size: 20px;
  line-height: 1.4;
  user-select: none;
}

.feature-text {
  font-family: var(--font-primary, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: #FFFFFF;
}

.feature-title {
  font-weight: 700;
  color: #FFFFFF;
}

/* Botão CTA (Ocultado no Desktop por padrão) */
.recorrencia-cta-container {
  display: none;
  width: 100%;
  margin-top: 14px;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1140px) {
  .recorrencia-wrapper {
    padding: 70px 50px 64px;
    border-radius: 40px;
    gap: 40px;
  }

  .recorrencia-title {
    font-size: 34px;
  }
}

@media (max-width: 1024px) {
  .recorrencia-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }

  .recorrencia-cta-container .btn-figma-primary {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .recorrencia-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recorrencia-card-highlight,
  .recorrencia-card-features {
    padding: 30px 28px;
  }
}

@media (max-width: 600px) {
  .section-recorrencia {
    padding: 24px 0 40px;
  }

  .recorrencia-wrapper {
    padding: 36px 20px 32px;
    border-radius: 28px;
    gap: 28px;
  }

  .recorrencia-title {
    font-size: 26px;
    line-height: 1.25;
    text-align: center;
  }

  .recorrencia-br-desktop {
    display: none;
  }

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

  .recorrencia-subtitle,
  .recorrencia-desc,
  .feature-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .card-highlight-text {
    font-size: 18px;
  }
}
