.hero {
    position: relative;
    padding-bottom: 100px;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 100%),
        url('/assets/img/hero-bg.png'); 
    background-size: cover;
    background-position: center;
    backdrop-filter: brightness(0.8);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Crea un patrón de rejilla muy sutil */
    background-image: 
        linear-gradient(rgba(193, 18, 28, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(193, 18, 28, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none; /* Para que no estorbe a los botones */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2; /* Para que el texto quede arriba de la rejilla */
}

.hero-tag {
    color: var(--ordi-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero h1 {
    font-size: 3.8rem; /* Un pelín más grande */
    line-height: 1.1;
    max-width: 850px;
    margin-bottom: 25px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Sombra para legibilidad */
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { height: auto; padding: 100px 0; }
}