/* ==========================================================================
   components.css — Botones, tarjetas de logos, elementos reutilizables
   Serrato HH
   ========================================================================== */

/* Botón outline (usado en header/footer: "Contáctanos!") */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn--light {
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--light:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

/* Tarjeta de logo de cliente */
.client-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
