/* ===== QUEM SOMOS PAGE CSS ===== */

/* MVV Section */
.mvv-section {
  background: var(--neutral-100);
  padding: 88px 24px;
}

.mvv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  border-top: 4px solid var(--teal-500);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-200);
}

.mvv-card.highlight {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  box-shadow: var(--shadow-teal);
  border: none;
  border-top: 4px solid transparent;
}

.mvv-card.highlight:hover {
  box-shadow: 0 20px 25px -5px rgba(20, 184, 166, 0.4), 0 8px 10px -6px rgba(20, 184, 166, 0.2);
}

.mvv-card.highlight h3,
.mvv-card.highlight p {
  color: var(--white);
}

.mvv-card.highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.mvv-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  background: var(--teal-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.mvv-card:hover .mvv-card-icon {
  transform: scale(1.1);
}

.mvv-card.highlight .mvv-card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.mvv-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin: 0 auto 16px;
  text-align: center;
  width: 100%;
}

.mvv-card p {
  color: var(--neutral-500);
  line-height: 1.75;
  font-size: 0.95rem;
  text-align: center;
}

.mvv-card ul {
  list-style: none;
  color: var(--neutral-600);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
}

.mvv-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.mvv-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .mvv-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Timeline Section */
.timeline-section {
  padding: 88px 24px;
  background: var(--white);
}

.timeline-container {
  position: relative;
  max-width: 700px;
  margin: 52px auto 0;
  padding-left: 40px;
  border-left: 3px solid var(--teal-300);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -52px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-600);
  border: 4px solid var(--teal-200);
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 6px 0 8px;
}

.timeline-item p {
  color: var(--neutral-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline-container {
    padding-left: 30px;
    margin-left: 20px;
  }
  .timeline-marker {
    left: -42px;
  }
}
