* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #05050a;
    background-image: url('img/negoprime.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 4, 12, 0.75);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.logo-container {
    text-align: center;
    animation: flutuando 4s infinite;
    will-change: transform;
}   

.logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0px 0px 15px rgba(0, 153, 255, 0.4));
}

@keyframes flutuando {
    0%, 100% {
        transform: translateY(4px);
    }
    50% {
        transform: translateY(-4px) scale(1.07); 
    }
}

.vsl-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000; 
    border-radius: 12px;
    position: relative;
    isolation: isolate;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.25);
    animation: ambientGlow 4s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
    0% {
        box-shadow: 0 0 15px rgba(0, 136, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 136, 255, 0.45);
    }
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 12px;
}

.planos-container {
    width: 100%;
    max-width: 860px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    margin-top: 10px;
}

.plano-card {
    flex: 1;
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.plano-card.destaque {
    background: linear-gradient(180deg, rgba(0, 136, 255, 0.15) 0%, rgba(10, 10, 18, 0.95) 100%);
    border: 2px solid rgba(0, 152, 247, 0.8);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.35);
    transform: scale(1.03);
}

.plano-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 152, 247, 1);
}

.plano-card.destaque:hover {
    transform: scale(1.03) translateY(-5px);
}

.plano-badge {
    position: absolute;
    top: -14px;
    background: linear-gradient(90deg, #0088ff, #00c6ff);
    color: #000000;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 152, 247, 0.6);
    animation: pulsoBrilho 2s infinite alternate;
}

@keyframes pulsoBrilho {
    0% {
        box-shadow: 0 0 10px rgba(0, 152, 247, 0.5);
    }
    100% {
        box-shadow: 0 0 22px rgba(0, 198, 255, 0.9);
    }
}

.plano-titulo {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    margin-top: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 152, 247, 0.5);
}

.plano-beneficios {
    list-style: none;
    width: 100%;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plano-beneficios li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plano-beneficios li span {
    color: #0098f7;
    font-weight: 800;
}

.plano-preco {
    text-align: center;
    margin-bottom: 28px;
    width: 100%;
}

.preco-antigo {
    display: block;
    color: #a0a0a0;
    font-size: 0.85rem;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 600;
}

.preco-atual {
    display: block;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(0, 152, 247, 0.4);
}

.preco-atual small {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 600;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 22px 32px;
    background-color: #0098f7;
    color: black;
    text-align: center;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 25px rgba(0, 152, 247, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible; 
    transform-style: preserve-3d;
}

.cta-button.plano-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    margin-top: auto;
}

.cta-button::after, 
.cta-button::before {
    content: '';
    position: absolute;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    box-sizing: content-box;
    background-image: conic-gradient(from var(--angle), transparent 75%, #0088ff);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-1px);
    border-radius: 11px; 
    opacity: 1; 
    animation: spin 4s linear infinite;
    transition: opacity 0.3s ease;
}

.cta-button::before {
    filter: blur(1.2rem);
    width: calc(100% + 12px);
    height: calc(100% + 12px);
}

.cta-button:hover {
    transform: scale(1.02);
    background-color: #2bb0ff;
    box-shadow: 0 0 35px rgba(0, 152, 247, 0.6);
}

.cta-button:hover::after,
.cta-button:hover::before {
    animation-duration: 1s;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    display: none;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .planos-container,
    .fade-in {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .plano-card {
        width: 100%;
        max-width: 420px;
    }

    .plano-card.destaque {
        transform: scale(1);
        order: -1;
    }

    .plano-card.destaque:hover {
        transform: translateY(-5px);
    }

    .cta-button::after,
    .cta-button::before {
        animation-duration: 1.2s;
    }
}