/* ===== LOGO HEADER ===== */

 header {
    height: 150px;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 4px solid rgb(255, 140, 0);
    padding: 0 21px;
    align-items: center;
}

#img-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: black;
    }


    #img-logo img {
      height: 100%;
      width: auto;
      object-fit: scale-down;
    }

    
    #img-logo img:hover {
      cursor: pointer;
      filter: blur(1.5px);
      transform: scale(1.01);
    }
          


/* ===== MENÚ OVERLAY ===== */

    #menu-overlay {
      position: absolute;
      top: 100px;
      right: 0;
      background: rgba(0, 0, 0, 0.96);
      display: none;
      flex-direction: column;
      align-items: flex-end;
      padding: 1.5rem 2rem;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
      transition: opacity 0.3s ease;
      z-index: 9999;
    }


    #menu-overlay.active {
      display: flex;
    }

    #menu-lista {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    #menu-lista li {
      font-size: 2rem;
      margin: 1rem 0;
      color: white;
      cursor: pointer;
      transition: color 0.2s ease;
      position: relative;
    }

    #menu-lista li::before {
      content: "•";
      color: rgb(255, 200, 0);
      margin-right: 12px;
    }

    #menu-lista li:hover {
      color: rgb(255, 200, 0);
    }

    #menu-lista a {
      color: inherit;
      text-decoration: none;
    }

    
    #menu-contenidos {
      height: 50%;
      padding: 20px;
      transition: filter 0.3s ease, transform 0.3s ease;
    }

    #menu-contenidos:hover {
      cursor: pointer;
      filter: blur(1.5px);
      transform: scale(1.05);
    }