/* Central de Vendas - Futebol Virtual */

.cv-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.cv-red-border-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #dc2626;
    border-top: 4px dashed #dc2626;
    z-index: 9999;
}

.cv-background-layers {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: #050505;
}

.cv-bg-gradient-center {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), #000000);
}

.cv-bg-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #000000, transparent);
}

.cv-bg-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #000000, transparent);
}

.cv-main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.cv-hero-section {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 56rem;
}

.cv-hero-title {
    margin-bottom: 1.5rem;
    position: relative;
}

.cv-title-glow {
    position: absolute;
    inset: -4px;
    background: rgba(0, 212, 255, 0.1);
    filter: blur(24px);
    border-radius: 9999px;
    opacity: 0.3;
    animation: cv-pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cv-main-title {
    position: relative;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 900;
    margin: 0;
}

@media (min-width: 640px) {
    .cv-main-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .cv-main-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cv-main-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .cv-main-title {
        font-size: 4.5rem;
    }
}

.cv-main-title span {
    display: block;
}

.cv-text-cyan {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.4);
}

.cv-text-white {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.cv-hero-subtitle {
    margin-bottom: 1.5rem;
}

.cv-subtitle-text {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
    .cv-subtitle-text {
        font-size: 1.25rem;
    }
}

.cv-subtitle-line {
    width: 80px;
    height: 4px;
    background-color: #06b6d4;
    margin: 0 auto;
}

.cv-cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

@keyframes cv-bounce-click {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes cv-pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 212, 255, 0.2), 0 0 15px rgba(0, 212, 255, 0.1); }
    50% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 25px rgba(0, 212, 255, 0.2); }
}

@keyframes cv-shake-button {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-8px); }
    75% { transform: translateY(-4px); }
}

@keyframes cv-pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cv-cta-button {
    position: relative;
    width: 100%;
    max-width: 28rem;
    height: 56px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: #00ffff;
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    animation: cv-bounce-click 2s cubic-bezier(0.4, 0, 0.6, 1) infinite, cv-pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite, cv-shake-button 1.5s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 640px) {
    .cv-cta-button {
        height: 64px;
        padding: 0 2rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .cv-cta-button {
        height: 80px;
        padding: 0 3rem;
        font-size: 1.125rem;
    }
}

.cv-cta-button:hover {
    background-color: rgba(0, 212, 255, 0.9);
    transform: scale(1.05);
    text-decoration: none;
    color: #000000;
}

.cv-cta-button svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .cv-cta-button svg {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 768px) {
    .cv-cta-button svg {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 1024px) {
    .cv-cta-button svg {
        width: 64px;
        height: 64px;
    }
}

.cv-urgency-text {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

@media (min-width: 640px) {
    .cv-urgency-text {
        font-size: 0.875rem;
    }
}

.cv-info-box {
    width: 100%;
    max-width: 64rem;
    border: 2px solid #22c55e;
    border-radius: 0.5rem;
    padding: 1rem;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 0.75rem;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3), inset 0 0 15px rgba(0, 255, 0, 0.1);
}

@media (min-width: 640px) {
    .cv-info-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (min-width: 1024px) {
    .cv-info-box {
        padding: 2rem;
    }
}

.cv-info-box p {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 640px) {
    .cv-info-box p {
        font-size: 1rem;
    }
}

.cv-text-green {
    color: #22c55e;
    font-weight: 700;
    text-shadow: 0 0 10px #00ff00;
}
