/* FUNDO PRETO SIMPLES */
body {
    margin: 0;
    padding: 0;
    background: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-x: hidden;
}

/* WRAPPER PARA MANTER TUDO JUNTO */
.page-wrapper {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

/* CONTAINER RESPONSIVO PARA A IMAGEM */
.n1-img {
    width: 100%;
    max-width: 1080px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* VÍDEO CENTRALIZADO - POSICIONADO SOBRE A IMAGEM */
.video-n1 {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -53%);
    width: 85%;
    max-width: 580px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: black;
    z-index: 10;
}

/* BOTÃO */
.btn-n1 {
    position: absolute;
    top: 108%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 12px 28px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid #673AB7;
    border-radius: 30px;
    background: radial-gradient(circle at left center,
        #610e71 0%,      /* roxo profundo inicial */
        #00BCD4 25%,     /* azul ciano */
        #3F51B5 60%,     /* azul índigo */
        #00BCD4 100%     /* azul ciano final */
    );
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 10;
    white-space: nowrap;
}

.btn-n1:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-n1:active {
    transform: translateX(-50%) scale(0.98);
}

/* REMOVER ESTILO DE LINK DO BOTÃO */
a {
    text-decoration: none;
}

/* RESPONSIVIDADE PARA TELAS PEQUENAS */
@media (max-width: 768px) {
    .video-n1 {
        width: 90%;
        max-width: 100%;
    }
    
    .btn-n1 {
        font-size: 20px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .video-n1 {
        width: 92%;
    }
    
    .btn-n1 {
        font-size: 16px;
        padding: 8px 16px;
    }
}
