.menu {
    height: auto;
    padding: 1rem 1rem 1rem 1rem;
}

.menu-interno {
    display: grid;
    grid-template-columns: auto 1fr auto; /* logo | centro | sanduche */
    align-items: center;
}

.a-logo {
    order: 0; /* logo a la izquierda */
    margin-right: 10px;
}

.menu-sanduche {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    order: 2;
    justify-self: end;
}

.menu-sanduche-linea {
    display: block;
    width: 27px;
    height: 2px;
    border-radius: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animación a “X” cuando el menú está abierto (cuando el <nav> tenga la clase .menu-abierto) */
.menu.menu-abierto .menu-sanduche-linea:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
    height: 3px;   
}

.menu.menu-abierto .menu-sanduche-linea:nth-child(2) {
    opacity: 0;
}

.menu.menu-abierto .menu-sanduche-linea:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
    height: 3px;
}

.menu-derecha {
    order: 1;
    justify-self: center;
    text-align: center;
}

.menu-items {
    order: 3;
    width: 100%;
    display: none; /* oculto por defecto en móvil */
    justify-content: center; 
    gap: 1.3rem;
    margin-top: 0.4rem;
    align-items: center;
    height: 3rem;
    grid-column: 1 / -1;
}

.menu.menu-abierto .menu-items {
    display: flex;
}

.item-menu {
    font-size: 1.1rem;
}

.seccion-colorida p {
    font-size: 1.3rem;
}

.logo {
    height: 50px;
}

.item-menu.agenda {
    padding: 0.6rem 0.7rem;
    font-size: 0.9rem;
    display: inline-block;
    max-width: 4rem;
    text-align: center; 
    line-height: 1.1; 
    white-space: normal;     
}

.tarjeta-presentacion {
    justify-content: center; 
    align-items: flex-start;
    padding-top: 0rem; 
    padding-bottom: 0rem;
    min-height: 100vh;
}

.tarjeta {
    width: 80%;
    margin-top: 3.5rem;
    padding: 1.5rem 1.25rem;
    height: auto;
    min-height: min(400px, 70vh);
}

.tarjeta h1 {
    font-size: 2.4rem;
}

.tarjeta h2 {
    font-size: 1.68rem;
}

.tarjeta h3, .tarjeta p {
    font-size: 1.45rem;
}

.tarjeta a {
    font-size: 1.3rem;
}

.seccion-colorida {
    flex-direction: column;
    align-items: flex-start;
    height: auto;    
    margin: 5rem 1rem 2.5rem;
    padding: 1.5rem 1.25rem;
}

.sobre-mi {
    margin-top: 0rem;
}

.video-fondo {
    object-position: 54% center;
    top: -50px;
    height: calc(100vh + 50px);
}

.seccion-colorida .foto, .sobre-mi .video-ashley {
    max-width: 100%;
    width: 100%;
    margin: -3.5rem 0 0.5rem 0;
    position: static;
    box-shadow: 0.5rem 0.5rem 10px rgba(0, 0, 0, 0.2);
}

.seccion-colorida .texto {
    margin: 0;
}

.seccion-colorida .texto h2 {
    font-size: 1.7rem;
}