.hero-header {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: .5rem;
    line-height: 0.9;
}

/* Botón principal */
.btn-hero {
    background-color: #f97316;
    color: white;
    margin-top: 30px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-hero:hover {
    background-color: #ea580c;
    transform: scale(1.01);
}

/* ===== Responsive: Tablets ===== */
@media (max-width: 1024px) {
    .hero-header {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .btn-hero {
        margin-top: 100px;
        padding: 0.9rem 1.8rem;
        font-size: 1.1rem;
    }
}

/* ===== Responsive: Celulares ===== */
@media (max-width: 768px) {
    .hero-header {
        height: 80vh;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .btn-hero {
        margin-top: 60px;
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}
