/* MOBILE 768 px */
@media (max-width: 768px) {
  .header {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
.sidebar {
    display: none;
  }
nav#mobile-menu {
    visibility: visible;
    position: fixed;
}
  .header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
  }
header.header img {
    width: 40%;
    margin-left: 30%;
}

  /* ðŸ”¥ MENU OVERLAY */
  .mobile-menu {
    position: fixed;
    inset: 0; /* ðŸ‘ˆ cubre toda la pantalla */

    width: 100%;
    height: 100vh;

    background: #000;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 9999;

    display: flex;
    flex-direction: column;
    padding: 2rem;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  #menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }

  button#menu-toggle {
    width: 40px;
    height: 40px;
    margin-top: 3%;
    background-color: #fff;
    border-radius: 8px;
    border: none;
    font-size: 1.5rem;
  }

  /* HERO ajustes */
  .hero {
    margin-left: 0;
  }

  .hero__content {
    padding: 0px 20px;
  }

    .hero h1 {
        font-size: 70px;
        margin-top: 14%;
        word-break: break-word;
    }

  .hero__image {
    right: 0;
    width: 64%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero__image img {
        width: 100%;
        height: auto;
        display: block;
        margin-left: 11%;
    }
}

@media (max-width: 450px) {
    .hero__image {
        width: 80%;
    }
.hero h1 {
        margin-top: 15%;
    }
}