/* 🎨 Estilos de la portada principal */
#portada {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 160px;
  background: #222 url('/images/portada.JPG') center/cover no-repeat; /* fondo por defecto */
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  color: #fff;
  padding: 24px;
  text-align: center;
}

/* Capa oscura sobre la imagen de fondo */
#portada::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* Contenido visible encima del overlay */
#portada .inner {
  position: relative;
  z-index: 1;
}

/* Contenedor circular del logo */
#portada .logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* Imagen del logo */
#portada .logo img {
  width: 85%;
  height: auto;
  object-fit: contain;
}

/* Texto de sucursal */
#portada .sucursal {
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
