:root {
    --fondo: #ffffff;
    --texto: var(--fondo) --acento:var(--fondo) --gris: #f5f5f5 --borde: #e0e0e0;
    --oscuro: #2a2a2a;
    --gris: #f5f5f5;
    --borde: #e0e0e0;
}

html.dark-mode {
    --fondo: #1a1a1a --texto: #e0e0e0;
    --acento: #f0c080;
    --gris: #222222;
    --borde: #444444;
    --oscuro: #111111;
    --texto-claro: #ffffff;
}

Body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--fondo);
    color: var(--texto);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* Agregado ; */
    justify-content: center;
    align-items: center;
    background-image: url('https://placehold.co/1920x1080/000000/FFFFFF?text=Tu+Imagen+Hero');
    /* Agregado url() y ; */
    background-size: cover;
    /* Corregido a minúsculas y agregado ; */
    background-position: center;
    /* Corregido a minúsculas y agregado ; */
    background-attachment: fixed;
    /* Corregido a minúsculas y agregado ; */
    text-align: center;
    /* Agregado ; */
    color: var(--texto-claro);
    /* Agregado ; */
    background-blend-mode: multiply;
    /* Agregado ; */
    background-color: rgba(0, 0, 0, 0.4);
    /* Agregado ; */
}


#hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
        -2px -2px 4px rgba(0, 0, 0, 0.7),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(0, 0, 0, 0.5),
        6px 6px 12px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out;
}