* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.95);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-content h1 .highlight {
    color: #ff6a00;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff8533 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.6);
    background: linear-gradient(135deg, #ff8533 0%, #ff6a00 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-video-container {
        height: 50vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 8vw, 3rem);
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-video-container {
        height: 45vh;
        min-height: 320px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}