/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

.hidden-xs.logo-container {
  display: block !important;
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
}

/* Móvil */
@media (max-width: 768px) {

  /* Ocultamos logo original */
  .navbar-brand img {
    display: none;
  }

  /* Aseguramos que el contenedor tenga espacio */
  .navbar-brand {
    display: block;
    width: 100%;
    height: 60px; /* ajusta según tu logo */
    position: relative;
  }

  /* Insertamos logo móvil */
  .navbar-brand::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/upload/surveys/579467/images/faldonmovil.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}