/* Mobile-First Hero Styles */

.hero {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    height: 100vh; /* Fallback */
    height: 100svh; /* Evita o efeito de scale/pulo no mobile ao rolar a tela */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    color: var(--color-bg-canvas);
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.hero-content h1 {
    font-size: var(--font-size-hero);
    font-weight: 700;
    color: var(--color-bg-canvas);
    margin-bottom: 0.5rem;
    line-height: var(--lh-title);
}

.hero-content p {
    font-size: var(--font-size-h3);
    color: var(--color-bg-hover);
    line-height: var(--lh-body);
    margin: 0;
}

/* Telas maiores (Desktop e Tablets) */
@media (min-width: 768px) {
    .hero {
        margin-top: 0;
        margin-bottom: 1rem;
        height: 100vh; /* Altura total para desktop */
    }

    .hero-content {
        max-width: 1520px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-content h1 {
        margin-bottom: 1rem;
    }
}
