/* =========================================================
   CENTRAL TAXI AIRPORT LIMA — nosotros.css (solo página Nosotros)
   ========================================================= */

.about-list li { padding: .5rem 0; font-size: 1.02rem; }
.about-list i { color: var(--color-gold); margin-right: .6rem; font-size: 1.1rem; }

.value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(201,162,39,.2);
  transition: transform .3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .value-card:hover { transform: translateY(-6px); }
}
.value-card i { font-size: 2rem; color: var(--color-gold); margin-bottom: .8rem; }
.value-card h5 { font-family: var(--font-display); font-weight: 700; color: var(--color-dark); margin-bottom: .8rem; }
.value-card p { color: #666; font-size: .92rem; line-height: 1.65; text-align: left; margin-bottom: 0; }

/* Tarjetas compactas de valores (Puntualidad, Seguridad, Excelencia...) */
.value-card-sm { padding: 1.5rem 1.25rem; }
.value-card-sm i { font-size: 1.6rem; margin-bottom: .6rem; }
.value-card-sm h5 { font-size: 1rem; margin-bottom: .5rem; }
.value-card-sm p { font-size: .85rem; line-height: 1.55; text-align: center; }

.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1rem;
  border: 3px solid transparent;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-photo { border-color: var(--color-gold); transform: scale(1.02); }
}
.team-role { color: var(--color-gold); font-size: .9rem; font-weight: 600; letter-spacing: .5px; margin-top: .8rem; margin-bottom: 0; }
