/* Landing de alta conversão — AgendaBella */

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(18, 199, 184, 0.12);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 48px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.showcase-row--reverse .showcase-copy {
  order: 2;
}

.showcase-row--reverse .showcase-media {
  order: 1;
}

.showcase-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
}

.showcase-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42ch;
}

.showcase-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 143, 134, 0.15);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: linear-gradient(145deg, #f8fffe, #fff);
}

.showcase-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.result-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.result-card__emoji {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.result-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.compare-section {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.compare-table th {
  background: var(--primary-light);
  color: var(--navy);
  font-weight: 700;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .col-highlight {
  background: rgba(18, 199, 184, 0.08);
}

.compare-yes {
  color: var(--primary-dark);
  font-weight: 700;
}

.compare-no {
  color: #94a3b8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 2px solid rgba(18, 199, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.cta-section--final {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(18, 199, 184, 0.18), transparent),
    linear-gradient(160deg, var(--navy) 0%, #1e3a5f 100%);
  color: #fff;
  text-align: center;
}

.cta-section--final .section-title {
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}

.cta-section--final .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.btn-cta-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .showcase-row--reverse .showcase-copy,
  .showcase-row--reverse .showcase-media {
    order: unset;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

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

  .product-showcase {
    gap: 48px;
  }
}
