* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://stgctnocloudsec.blob.core.windows.net/customization/WP_CATENO.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.video-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1024px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #ffffff;
    color: #c5d335;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #00aab5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .video-container {
        gap: 16px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        background-attachment: scroll;
    }

    .video-container {
        gap: 12px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}
