body {
    font-family: Arial, sans-serif;
    background-color: #eaeaea;
    margin: 0;
}

/* Contenedor */
.contenedor {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    border-radius: 5px;
    text-align: center;
}

/* Texto */
.titulo {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}

.subtitulo {
    color: #666;
    margin-bottom: 25px;
}

/* Menú PC */
.menu {
    display: flex;
    justify-content: center;
    background-color: #111;
    flex-wrap: wrap;
}

/* Items */
.menu .item {
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    font-size: 14px;
    transition: 0.3s;
    line-height: 1.3;
}

/* Hover */
.menu .item:hover {
    background-color: #4da6ff;
}

/* 📱 CELULAR */
@media (max-width: 600px) {

    .contenedor {
        width: 95%;
        padding: 20px;
    }

    .titulo {
        font-size: 22px;
    }

    .subtitulo {
        font-size: 14px;
    }

    /* 🔥 CLAVE: ya no ocupa todo el ancho */
    .menu {
        display: inline-flex;   /* 🔥 SOLUCIÓN REAL */
        flex-direction: column;
        align-items: center;
        background-color: #111;
    }

    /* Botones */
    .menu .item {
        padding: 20px 28px;
        font-size: 16px;
        line-height: 1.2;
    }
}