/* =====================================================
   TESTIMONIALS – DESKTOP
===================================================== */

.desktop-version {
  width: 100%;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at top,
      rgba(0,191,98,0.06),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--bg-main),
      var(--bg-section)
    );
}

.desktop-version .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HEADER
========================= */

.desktop-version h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-main);
  letter-spacing: -0.4px;
}

.desktop-version h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(135deg, #00BF62, #7CFFB6);
  border-radius: 2px;
}

.desktop-version .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  line-height: 1.7;
}

/* =========================
   GRID
========================= */

.desktop-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Tablet (continua 2 colunas, mais compacto) */
@media (max-width: 1024px) {
  .desktop-testimonials {
    gap: 24px;
  }
}

/* =========================
   CARD
========================= */

.desktop-card {
  background: rgba(17, 24, 39, 0.85);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.desktop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(0,191,98,0.12),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.desktop-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 65px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,191,98,0.18);
}

.desktop-card:hover::before {
  opacity: 1;
}

/* =========================
   CARD HEADER
========================= */

.desktop-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.desktop-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #00BF62;
  object-fit: cover;
}

.desktop-card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 700;
}

.desktop-card-info span {
  font-size: 0.85rem;
  color: #00BF62;
  font-weight: 500;
}

/* =========================
   TEXT
========================= */

.desktop-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 14px;
  border-left: 2px solid rgba(0,191,98,0.35);
}

/* =====================================================
   CONTROLE DE VISIBILIDADE (CORREÇÃO CRÍTICA)
===================================================== */

/* ESCONDE DESKTOP NO MOBILE */
@media (max-width: 768px) {
  .desktop-version {
    display: none !important;
  }
}

