/* General */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Hero Section (Parallax) */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    /* Altura ajustable */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video en Parallax */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: -1;
}

/* Degradado sobre el video */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    /* Igual que la altura de la sección */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

/* Contenido centrado */
.content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.content h1 {
    font-size: 120px;
    font-weight: 700;
    margin: 0;
}

.content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 10px;
    color: #ff7f00;
    /* Color naranja para destacar */
}