/* Botón «volver arriba». Marcado de la Fase 1. */

/*
 * js/go-top.js lo oculta al cargar y lo muestra al bajar 250 px.
 * Sin JavaScript se queda visible y sigue funcionando: es un enlace
 * de conveniencia, nunca la única forma de llegar a ningún sitio.
 */
#go-top-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 2px solid var(--tinta);
    border-radius: 999px;
    background: var(--hueso-claro);
    color: var(--tinta);
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 26, 45, 0.16);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#go-top-button:hover {
    background: var(--tinta);
    color: #fff;
}
