/* =========================================================
   LP – Audição em Foco · Landing Page Style
   Redesign comercial – Mês das Mães 2026
   Escala de fonte: base 1rem → 1.6rem (×1.6)
   ========================================================= */

/* ---------- Reset / Base ---------- */
.lp * { box-sizing: border-box; }

/* ---------- Hero Section ---------- */
.lp-hero { background: #fff; }

.lp-hero__banner {
  background: linear-gradient(135deg, #7f2970 0%, #5c1c52 100%);
  padding: 3.2rem 1rem;
}

/* h1 antigo: 1.6rem → ×1.6 = 2.56rem */
.lp-hero__banner h1 {
  color: #fff;
  font-size: 2.56rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  text-wrap: balance;
}

.lp-hero__banner h1 strong {
  color: #ffd6f5 !important;
  font-weight: 700;
}

/* Promo badge – antigo: 0.85rem → 1.36rem */
.lp-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(90deg, #e91e8c, #c2126e);
  color: #fff !important;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}

.lp-promo-badge svg { flex-shrink: 0; }

/* Content area */
.lp-hero__content {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

/* Image side */
.lp-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__image img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(127, 41, 112, .18);
}

/* Text side */
.lp-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem 0;
}

/* antigo: 1.1rem → 1.76rem */
.lp-hero__text p {
  font-size: 1.76rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1rem;
}

/* antigo: 1.1rem → 1.76rem */
.lp-hero__text .lp-highlight {
  background: linear-gradient(135deg, #fdf0fb, #f9e6f7);
  border-left: 4px solid #7f2970;
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.4rem;
  margin: 1.4rem 0;
  font-size: 1.76rem;
  line-height: 1.7;
  color: #5c1c52;
  font-weight: 600;
}

.lp-hero__text .lp-highlight strong {
  color: #7f2970 !important;
}

/* ---------- Divider strip – antigo: 0.95rem → 1.52rem ---------- */
.lp-divider-strip {
  background: linear-gradient(90deg, #7f2970, #c2126e, #7f2970);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.52rem;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ---------- Cards Section ---------- */
.lp-section {
  background: #f8f3f7;
  padding: 4rem 1rem;
}

/* antigo: 1.8rem → 2.88rem */
.lp-section__title {
  color: #7f2970;
  font-size: 2.88rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.3;
}

/* antigo: 1.1rem → 1.76rem */
.lp-section__subtitle {
  color: #666;
  font-size: 1.76rem;
  line-height: 1.65;
  margin-bottom: 2.8rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Card grid – 3 colunas fixas no desktop, 2 no tablet, 1 no mobile */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.lp-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 4px 20px rgba(127, 41, 112, .08);
  border: 1px solid rgba(127, 41, 112, .1);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(127, 41, 112, .16);
}

.lp-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f3e0ef, #e8c8e2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-card__icon svg {
  width: 28px;
  height: 28px;
  fill: #7f2970;
}

/* Cabeçalho do card: ícone + título lado a lado */
.lp-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-card__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5c1c52;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* antigo: 1rem → 1.6rem */
.lp-card p {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ---------- CTA block ---------- */
.lp-cta-block {
  background: linear-gradient(135deg, #7f2970 0%, #5c1c52 100%);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  color: #fff;
  margin-top: 2rem;
}

/* antigo: 1.1rem → 1.76rem */
.lp-cta-block p {
  font-size: 1.76rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  opacity: .95;
}

/* antigo: 0.78rem → 1.25rem */
.lp-cta-block .small {
  font-size: 1.25rem;
  opacity: .7;
  margin-top: 1rem;
}

/* ---------- WA Button – antigo: 1rem → 1.6rem ---------- */
.lp-button {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lp-button:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  color: #fff !important;
}

.lp-button__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ---------- Utility ---------- */
.u-text-primary { color: #7f2970 !important; }
.u-bg-primary   { background-color: #7f2970 !important; }
/* antigo: 1.25rem → 2rem */
.u-fs-20        { font-size: 2rem; }
/* antigo: 1.5rem → 2.4rem */
.u-fs-25        { font-size: 2.4rem; }
/* antigo: 1.1rem → 1.76rem */
.u-fs-18        { font-size: 1.76rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .lp-hero__image { margin-bottom: 1.6rem; }
  .lp-hero__image img { max-width: 100%; border-radius: 12px; }
  .lp-hero__text { text-align: center; }
  .lp-cta-block { padding: 2rem 1.4rem; }
  .lp-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .lp-cards { grid-template-columns: 1fr; }
  /* antigo mobile: 1.25rem → 2rem */
  .lp-hero__banner h1 { font-size: 2rem; }
}
