header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
}
body.admin-bar header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}
header .anuncio {
  background-color: #EC393C;
  padding: 10px 0;
  overflow: hidden;
}
header .anuncio__track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  -webkit-animation: anuncio-scroll 30s linear infinite;
          animation: anuncio-scroll 30s linear infinite;
}
header .anuncio p {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: white;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  padding-right: 4rem;
}
header .anuncio p strong {
  font-weight: 900;
}
header .contenedor {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
header .contenedor .contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  font-size: 14px;
}
header .contenedor .contenido img {
  max-width: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  header .contenedor .contenido .logo-desktop {
    display: none;
  }
}
header .contenedor .contenido .menu {
  list-style: none;
}
header .contenedor .contenido .menu a {
  text-decoration: none;
  color: #550C33;
  font-weight: 700;
}
header .contenedor .contenido .menu a:hover {
  color: #EC393C;
}
@media (max-width: 768px) {
  header .contenedor .contenido .menu {
    display: none;
  }
}
header .contenedor .contenido .botones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
header .contenedor .contenido .botones .contacto {
  background-color: white;
  color: #EC393C;
}
header .contenedor .contenido .botones .contacto:hover {
  color: white;
  background-color: #EC393C;
}
@media (max-width: 768px) {
  header .contenedor .contenido .botones .contacto {
    display: none;
  }
}
header .contenedor .contenido .botones .registro:hover {
  color: #EC393C;
  background-color: white;
}
header .contenedor .contenido .botones a {
  text-decoration: none;
  padding: 15px;
  background-color: #EC393C;
  color: white;
  border-radius: 10px;
  display: inline-block;
  font-weight: 700;
  border: solid 2px #EC393C;
}
@media (max-width: 500px) {
  header .contenedor .contenido .botones a {
    padding: 10px;
    font-size: 11px;
  }
}
header .contenedor .contenido .logo-movil {
  display: none;
  gap: 30px;
}
header .contenedor .contenido .logo-movil img {
  max-width: 150px;
  width: 100%;
}
@media (max-width: 500px) {
  header .contenedor .contenido .logo-movil img {
    max-width: 100px;
  }
}
header .contenedor .contenido .logo-movil .burguer-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 30px;
  cursor: pointer;
}
header .contenedor .contenido .logo-movil .burguer-button__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #550C33;
  border-radius: 2px;
}
@media (max-width: 768px) {
  header .contenedor .contenido .logo-movil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 500px) {
  header .contenedor .contenido .logo-movil {
    gap: 15px;
  }
}
header .contenedor .menu-movil {
  display: none;
  padding-bottom: 20px;
}
header .contenedor .menu-movil ul {
  list-style: none;
}
header .contenedor .menu-movil a {
  text-decoration: none;
  color: #550C33;
  font-weight: 700;
}
header .contenedor .menu-movil a:hover {
  color: #EC393C;
}
header .contenedor .menu-movil.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@-webkit-keyframes anuncio-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-16.6666666667%);
            transform: translateX(-16.6666666667%);
  }
}
@keyframes anuncio-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-16.6666666667%);
            transform: translateX(-16.6666666667%);
  }
}