/* ═══════════════════════════════════════════════
   PROOF  ·  Depoimento + Garantia
   Portal da Conexão
   ═══════════════════════════════════════════════ */

/* ─── Remove padding-top (segue direto após bônus) ─── */
#garantia.section-pad { padding-top: 0; }

/* ─── Grid de prova social ─── */
.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

/* ─── Depoimento ─── */
.testimonial {
  padding: 48px 44px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--sage) 14%, var(--cream)) 0%,
    var(--cream) 100%
  );
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--sage) 30%, transparent);
  position: relative;
}

.testimonial .quote {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.003em;
  font-weight: 500;
}

.testimonial .quote::before {
  content: "\201C";
  font-size: 80px;
  line-height: 0.6;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 8px;
  font-family: 'Quicksand', sans-serif;
}

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

.testimonial .author .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.testimonial .author .who { font-weight: 600; font-size: 15px; }

.testimonial .author .role {
  color: var(--ink-soft);
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}

/* ─── Garantia ─── */
.guarantee {
  padding: 44px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── Selo circular ─── */
.seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--terra);
}

.seal::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid var(--terra);
  opacity: 0.55;
}

.seal .big {
  font-family: 'Quicksand', sans-serif;
  font-size: 76px;
  line-height: 1;
  color: var(--terra);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.seal .small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}

.guarantee h4 { font-size: 24px; margin-bottom: 8px; }

.guarantee p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* ─── Responsivo ─── */
@media (max-width: 920px) {
  .proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .testimonial { padding: 32px 24px; }
  .testimonial .quote { font-size: 18px; }
  .guarantee { padding: 32px 24px; }
  .seal { width: 160px; height: 160px; }
  .seal .big { font-size: 60px; }
}

@media (max-width: 480px) {
  .testimonial { padding: 24px 16px; }
  .testimonial .quote { font-size: 15px; }
  .testimonial .quote::before { font-size: 60px; }
  .guarantee { padding: 26px 16px; }
  .guarantee h4 { font-size: 20px; }
  .guarantee p { font-size: 13px; }
}
