/* Marca Cuida-ME — logos y placas sobre fondos claros/oscuros */

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Superficie off-white intencional: el mark full-color no «flota» sobre el oscuro */
  background: #f4f7fb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.18);
}

.logo-plate--mark {
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 14px;
}

.logo-plate--wordmark {
  width: auto;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
}

.logo-plate img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
}

.logo-plate--mark img {
  width: 100%;
  height: 100%;
}

.logo-plate--wordmark img {
  max-width: 120px;
  max-height: 28px;
}

.logo-plate--sidebar-vendor {
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 10px;
}

.logo-plate--sidebar-vendor img {
  max-width: 96px;
  max-height: 24px;
}

@media (max-width: 480px) {
  .logo-plate--mark {
    width: 44px;
    height: 44px;
    padding: 5px;
    border-radius: 12px;
  }

  .logo-plate--wordmark {
    min-height: 40px;
    padding: 8px 12px;
  }

  .logo-plate--wordmark img {
    max-width: 100px;
    max-height: 24px;
  }
}
