.alex-brush-regular {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-style: normal;
}
.arimo-400 {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
    background-color: #fff;
    font-family: "Arimo", sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
  }
  
  /* Header base */
  header {
    background-color: #fff;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: background-color 0.5s ease, transform 0.5s ease;
    transform: translateY(0);
    z-index: 10;
  }
  
  /* Contenedor del nav: distribuye el logo y el menú */
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 10px;
  }
  
  /* Estilo para la imagen del logo (respeta el tamaño original) */
  .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  
  /* Estilos para el menú (antes era el ul del header) */
  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: background-color 0.5s ease, transform 0.5s ease;
    transform: translateY(0);
  }
  
  .nav-menu li {
    margin: 0 10px;
  }
  
  .nav-menu li a {
    text-decoration: none;
    color: #000000;
    height: 32px;
    display: block;
    cursor: pointer;
    width: 40px;
    display: flex;
    justify-content: flex-end;
  }
  
  /* Cambio de color al hacer scroll */
.scrolled {
    background-color: #ffffff!important;
    transform: translateY(0);
  }
  
  /* Estado inicial de animación (ya existente) */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 0.5rem;
  }
  
  /* --- Responsive para móviles --- */
  @media (max-width: 768px) {
    /* Muestra la hamburguesa */
    .hamburger {
      display: flex;
    }

  }
  