/**
 * STIVO — Footer con marca gigante (gradiente recortado en el texto)
 * Requiere: variables de index.css (misma capa visual que html/body: --bg-secondary).
 * Tipografía display: fallback Bebas Neue; si cargas index.css antes, dispones de DrukWide.
 */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.stivo-site-footer {
    width: 100%;
    padding: 4rem 1.5rem 5rem;
    /* Misma base que html/body para no crear un «bloque» de otro color */
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.stivo-site-footer__brand {
    margin: 3rem 0 0;
    text-align: center;
    font-family: 'DrukWide', 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    font-size: 3rem;
    /* Visible sobre body (--bg-secondary), no sobre blanco puro */
    background-image: linear-gradient(to bottom, #ececec 0%, #b5b5b5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
}

html.dark-mode .stivo-site-footer__brand {
    background-image: linear-gradient(to bottom, #0a0a0a 0%, #262626 100%);
}

@media (min-width: 768px) {
    .stivo-site-footer__brand {
        font-size: 8rem;
    }
}

@media (min-width: 1024px) {
    .stivo-site-footer__brand {
        font-size: 12rem;
    }
}

@media (min-width: 1280px) {
    .stivo-site-footer__brand {
        font-size: 13rem;
    }
}
