* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    overflow-x: hidden;
}

.contenedor-unico {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.imagen-total {
    width: 100%;
    height: auto;
    display: block;
}

/* BOTÓN FINAL INVISIBLE */
.btn-unico-final {
    position: absolute;
    left: 44.5%; 
    transform: translateX(-50%);
    top: 3.0%; 
    width: 19%; 
    height: 0.5%; 
    
    /* Limpieza total del botón */
    background: transparent; 
    border: none;
    cursor: pointer;
    z-index: 10;
    outline: none;
}

/* --- REGLAS SOLO PARA EL CELULAR --- */
@media (max-width: 480px) {
    /* Hacemos que el botón invisible ocupe toda la pantalla. 
       Así puede tocar en cualquier lado para entrar sin apuntarle a una zona diminuta */
    .btn-unico-final {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 50% !important;
    }
}
