/* Assinaturas — extensões alinhadas ao site (hero-main, section, step-card, mid-banner) */

.site-body--assinaturas {
  background: linear-gradient(180deg, var(--bg-softer) 0%, var(--bg) 42%);
}

.site-body--assinaturas .ass-landing {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

/* Hero */
.ass-hero-section {
  margin-top: clamp(1rem, 2.2vw, 1.5rem);
}

.ass-hero-section .hero-main {
  width: 100%;
}

.ass-trust {
  list-style: none;
  margin: clamp(1rem, 2.5vw, 1.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 16px);
}

@media (max-width: 640px) {
  .ass-trust {
    grid-template-columns: 1fr;
  }
}

.ass-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.35;
}

.ass-trust__item strong {
  color: var(--navy);
  font-weight: 600;
}

.ass-trust__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  color: var(--navy);
}

.ass-trust__ico svg {
  width: 20px;
  height: 20px;
}

.ass-footnote {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Títulos de seção com texto de apoio */
.section-header--stack,
.section-header:has(.ass-section-intro) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.ass-section-intro {
  margin: 8px 0 0;
  max-width: 36rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

/* Simulador */
.ass-sim.site-card {
  max-width: 52rem;
  margin-inline: auto;
  border-radius: var(--radius-xl);
}

.ass-sim__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.ass-sim__select {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  margin-bottom: 1.5rem;
}

.ass-sim__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 16px);
}

@media (max-width: 720px) {
  .ass-sim__results {
    grid-template-columns: 1fr;
  }
}

.ass-sim__stat {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--bg-softer);
  text-align: center;
}

.ass-sim__stat--accent {
  background: #e8eef7;
  border-color: rgba(13, 45, 94, 0.15);
}

.ass-sim__stat--highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.ass-sim__stat--highlight .ass-sim__stat-label,
.ass-sim__stat--highlight .ass-sim__stat-hint {
  color: rgba(255, 255, 255, 0.72);
}

.ass-sim__stat--highlight .ass-sim__stat-value {
  color: #fff;
}

.ass-sim__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.ass-sim__stat-value {
  display: block;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.ass-sim__stat-value--lg {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.ass-sim__stat-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.ass-sim__fine {
  margin: 1.25rem 0 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Escolha de cesta */
.ass-pick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: 1.5rem;
}

.ass-pick-card {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  padding: 16px;
  text-align: left;
  font: inherit;
  color: inherit;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.ass-pick-card:hover {
  border-color: var(--navy-mid);
}

.ass-pick-card.is-selected {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 45, 94, 0.12);
}

.ass-pick-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: var(--bg);
  transition: all 0.2s;
}

.ass-pick-card__check svg {
  width: 14px;
  height: 14px;
}

.ass-pick-card.is-selected .ass-pick-card__check {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.ass-pick-card__img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
}

.ass-pick-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ass-pick-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-right: 28px;
}

.ass-pick-card__nome {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.ass-pick-card__preco {
  font-size: 12px;
  color: var(--text-muted);
}

.ass-pick-card__assin {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-mid);
  line-height: 1.35;
}

.ass-pick__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-cta--wa {
  display: inline-flex;
  align-items: center;
}

/* Depoimento em destaque */
.ass-depo-featured {
  max-width: 40rem;
  margin: 0 auto;
}

/* FAQ */
.ass-faq.site-card {
  max-width: 40rem;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
}

.ass-faq__item {
  border-bottom: 1px solid var(--border);
}

.ass-faq__item:last-child {
  border-bottom: none;
}

.ass-faq__item summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.ass-faq__item summary::-webkit-details-marker {
  display: none;
}

.ass-faq__item p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.ass-faq__item a {
  color: var(--navy-mid);
  font-weight: 600;
}

/* CTA final */
.ass-cta-section {
  margin-bottom: 0;
}

.mid-banner-trail .ass-cta-home {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  text-decoration: none;
  transition: color 0.15s;
}

.mid-banner-trail .ass-cta-home:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ass-empty {
  text-align: center;
  color: var(--text-muted);
}
