/* ===================================
   PAYWALL STYLES
   =================================== */

.paywall-locked {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.paywall-overlay {
    pointer-events: auto;
}

.paywall-blur {
    filter: blur(6px);
    opacity: 0.15;
    position: relative;
}

.paywall-blur::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.35);
    border-radius: 8px;
}

.paywall-unlock-btn {
    position: relative;
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 0 20px rgba(255, 0, 110, 0.5),
        0 0 40px rgba(131, 56, 236, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    overflow: hidden;
    z-index: 5;
}

.paywall-unlock-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.paywall-unlock-btn:hover::before {
    left: 100%;
}

.paywall-unlock-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.8),
        0 0 60px rgba(131, 56, 236, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.paywall-unlock-btn:active {
    transform: scale(1.02) translateY(-1px);
}

.paywall-unlock-btn svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

.unlock-btn-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.unlock-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.unlock-btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes shine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Modal de Assinatura */
.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.subscription-modal-content {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border: 2px solid #00c2ff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.subscription-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #8892b0;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.subscription-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00c2ff;
    transform: rotate(90deg);
}

.subscription-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c2ff;
}

.subscription-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ccd6f6;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscription-modal-text {
    font-size: 1.1rem;
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.subscription-modal-benefits {
    background: rgba(0, 194, 255, 0.05);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    color: #ccd6f6;
    font-size: 1rem;
    padding: 8px 0;
    text-align: left;
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.subscription-modal-btn {
    background: linear-gradient(135deg, #00c2ff 0%, #0066ff 100%);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscription-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 194, 255, 0.6);
}

.subscription-modal-note {
    font-size: 0.9rem;
    color: #8892b0;
    margin-top: 15px;
    opacity: 0.8;
}

/* ===================================
   FOMO MODAL ALERT STYLES
   =================================== */

.fomo-modal-content {
    background: linear-gradient(135deg, #1a0e27 0%, #2d1b3d 100%);
    border: 3px solid #ff006e;
    box-shadow: 
        0 20px 60px rgba(255, 0, 110, 0.4),
        0 0 100px rgba(131, 56, 236, 0.3);
    animation: shake 0.5s ease;
    max-width: 550px;
    padding: 45px 35px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.fomo-alert-icon {
    font-size: 5rem;
    animation: pulse-warning 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes pulse-warning {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 200, 0, 0.8));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(255, 200, 0, 1));
    }
}

.fomo-modal-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ff006e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 0 20px rgba(255, 0, 110, 0.8),
        0 0 40px rgba(255, 0, 110, 0.5);
}

.fomo-modal-alert {
    font-size: 1.15rem;
    color: #e6e9f0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.fomo-modal-alert strong {
    color: #00ff88;
    font-weight: 900;
    font-size: 1.25rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.7);
}

.fomo-highlight-box {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2) 0%, rgba(131, 56, 236, 0.2) 100%);
    border: 2px solid rgba(255, 0, 110, 0.5);
    border-radius: 16px;
    padding: 28px 25px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 
        0 0 40px rgba(255, 0, 110, 0.25),
        inset 0 0 30px rgba(255, 0, 110, 0.1);
}

.fomo-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.fomo-highlight-box h3 {
    font-size: 1.4rem;
    color: #00d4ff;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 0.7),
        0 0 40px rgba(0, 212, 255, 0.4);
    letter-spacing: 1px;
}

.fomo-highlight-box p {
    font-size: 1.05rem;
    color: #a8b2d1;
    line-height: 1.5;
}

.fomo-benefits-list {
    text-align: left;
    margin: 25px 0;
    padding: 0 10px;
}

.fomo-benefit {
    color: #e6e9f0;
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(136, 146, 176, 0.25);
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.fomo-benefit::before {
    content: '✅';
    font-size: 1.3rem;
    margin-right: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

.fomo-benefit:last-child {
    border-bottom: none;
}

.fomo-urgency-text {
    font-size: 1.15rem;
    color: #ff006e;
    font-weight: 700;
    margin: 25px 0;
    text-align: center;
    padding: 18px;
    background: rgba(255, 0, 110, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(255, 0, 110, 0.4);
    line-height: 1.6;
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.2);
}

.fomo-urgency-text strong {
    color: #00ff88;
    font-size: 1.35rem;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.fomo-subscribe-btn {
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
    padding: 22px 60px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.35rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 0 35px rgba(255, 0, 110, 0.7),
        0 0 70px rgba(131, 56, 236, 0.5),
        0 12px 45px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    animation: pulse-btn 2s ease-in-out infinite;
    margin-top: 30px;
}

@keyframes pulse-btn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.fomo-subscribe-btn:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 
        0 0 60px rgba(255, 0, 110, 1),
        0 0 120px rgba(131, 56, 236, 0.7),
        0 18px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
}

.fomo-subscribe-btn:active {
    transform: scale(1.02) translateY(-1px);
}

.btn-icon {
    font-size: 1.6rem;
    animation: rocket 1s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Responsivo */
@media (max-width: 768px) {
    .subscription-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .subscription-modal-title {
        font-size: 1.4rem;
    }

    .subscription-modal-text {
        font-size: 1rem;
    }

    .paywall-unlock-btn {
        font-size: 0.85rem;
        padding: 12px 24px;
    }
    
    .paywall-unlock-btn svg {
        width: 16px;
        height: 16px;
    }

    .fomo-modal-content {
        padding: 35px 25px;
        max-width: 95%;
    }

    .fomo-alert-icon {
        font-size: 3.5rem;
    }

    .fomo-modal-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .fomo-modal-alert {
        font-size: 1rem;
    }

    .fomo-modal-alert strong {
        font-size: 1.1rem;
    }

    .fomo-highlight-box {
        padding: 20px 15px;
    }

    .fomo-icon {
        font-size: 2.5rem;
    }

    .fomo-highlight-box h3 {
        font-size: 1.1rem;
    }

    .fomo-highlight-box p {
        font-size: 0.95rem;
    }

    .fomo-benefit {
        font-size: 0.95rem;
        padding: 12px 0;
    }

    .fomo-benefit::before {
        font-size: 1.1rem;
        margin-right: 10px;
    }

    .fomo-urgency-text {
        font-size: 1rem;
        padding: 15px;
    }

    .fomo-urgency-text strong {
        font-size: 1.15rem;
    }

    .fomo-subscribe-btn {
        font-size: 1.1rem;
        padding: 18px 40px;
        letter-spacing: 1.5px;
    }

    .btn-icon {
        font-size: 1.3rem;
    }
}
