body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Imagem de fundo */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fundo_vsl.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

/* Camada preta transparente no fundo */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* 50% de transparência */
    z-index: -1;
}

.video-container {
    position: relative;
    display: inline-block;
    max-width: 90%;
    width: auto;
    height: auto;
}

video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 10px;
}

/* Estilização do Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
}

/* Botões do Overlay */
.overlay-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.areavip-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    text-transform: uppercase;
    transition: 0.3s;
    outline: none;
}
.overlay-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    text-transform: uppercase;
    transition: 0.3s;
    outline: none;
}

/* Botão "Assistir do Início" */
#restart-button {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    color: white;
}

#restart-button:hover {
    background: linear-gradient(45deg, #e03e1a, #d81258);
}

/* Botão "Continuar Assistindo" */
#continue-button {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
}

#continue-button:hover {
    background: linear-gradient(45deg, #1e7e34, #1c7430);
}
/* Botão "Continuar Assistindo" */
#whatsapp-button {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
}
/* Botão "Continuar Assistindo" */
#areavip-button {
    background: linear-gradient(45deg, #00FFFF, #FFFF00);
    color: black;
}
#areavip-button:hover {
    background: linear-gradient(45deg, #FFFF00, #00FFFF);
}
#whatsapp-button:hover {
    background: linear-gradient(45deg, #1e7e34, #1c7430);
}
/* Botão "Continuar Assistindo" */
#minhaprime-button {
    background: linear-gradient(45deg, #28a745, #882138);
    color: white;
	margin-top:10px;
}

#minhaprime-button:hover {
    background: linear-gradient(45deg, #1e7e34, #741c30);
}

/* Botão Chamativo "EU QUERO" */
#btn-querer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px 50px;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    border-radius: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: pulse 1.5s infinite alternate;
    z-index: 10;
}

#btn-querer:hover {
    background: linear-gradient(45deg, #ffaa00, #ff4400);
}

/* Efeito Pulsante para o Botão "EU QUERO" */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .overlay {
        font-size: 18px;
        padding: 20px;
    }

    .overlay-buttons {
        flex-direction: column;
    }
    .areavip-button {
        font-size: 16px;
        padding: 15px 25px;
    }
    .overlay-button {
        font-size: 16px;
        padding: 15px 25px;
    }

    #btn-querer {
        font-size: 28px;
        padding: 20px 40px;
    }
}
/* Barra de progresso fixada no pé do vídeo */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: #4caf50;
    transition: width 0.2s ease-in-out;
}
/* Botões centrais chamativos */
.button-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    z-index: 10;
}

.main-button {
    padding: 20px 40px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: 0.3s;
    width: 100%;
    max-width: 350px;
}

/* Botão "EU QUERO ASSINAR!" */
#btn-assinar {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

#btn-assinar:hover {
    background: linear-gradient(45deg, #e03e1a, #d81258);
}

/* Botão "APENAS QUERO MEU PACK FREE!" */
#btn-packfree {
    background: linear-gradient(45deg, #ffcc00, #ff6600);
}

#btn-packfree:hover {
    background: linear-gradient(45deg, #ffaa00, #ff4400);
}

/* Modal responsivo */
#modal-packfree {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 20;
}

#modal-packfree h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.modal-input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#btn-download {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

#btn-download:hover {
    background: linear-gradient(45deg, #1e7e34, #1c7430);
}

/* Fundo escuro quando o modal está aberto */
#modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 19;
}
/* Modal de Assinatura - Fundo preto grande */
#modal-assinatura {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 20;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* Botão de Fechar o Modal */
#close-modal-assinatura {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Layout para exibir os planos lado a lado */
.modal-assinatura {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Estilo de cada plano de assinatura */
.plan-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
    min-width: 250px;
}

.plan-card h1 {
    font-size: 18px;
    margin-bottom: 10px;
}

.plan-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.plan-card strong {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

/* Botão de compra */
.plan-card a {
    display: inline-block;
    background: #ffcc00;
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
}

.plan-card a:hover {
    background: #ffaa00;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-assinatura {
        flex-direction: column;
        gap: 15px;
    }

    .plan-card {
        max-width: 100%;
    }
}



