/* Conversion Elements Styles for BlackPet Pro Library Landing Page */

/* Exploding Words - SIMPLIFIED, clean style */
.exploding-word {
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}

/* Urgent Verbs Styling - SIMPLIFIED, no animation */
.urgent-verb {
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Countdown Timer Bar - SIMPLIFIED */
.countdown-timer-bar {
    background: linear-gradient(90deg, #222 0%, #444 100%);
    border-bottom: 2px solid #555;
}

.timer-display {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Nightmare Bullet List Enhancement - SIMPLIFIED */
.nightmare-bullets li {
    transition: transform 0.3s ease;
}

.nightmare-bullets li:hover {
    transform: translateX(5px);
}

.nightmare-bullets .highlight {
    font-weight: 800;
    position: relative;
    display: inline-block;
    color: #ff6b6b;
}

/* Competitor X Styling */
.competitor-x {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    margin-left: 10px;
}

.crossed-off {
    border-top: 1px dashed #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

/* Media Logos Hover Effect */
.media-logo {
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.media-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
}

/* Quick Wins Enhancement */
.win-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.win-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ff6b6b;
    z-index: -1;
}

.win-item:hover:before {
    height: 100%;
    opacity: 0.05;
    transition: height 0.3s ease, opacity 0.3s ease;
}

/* Comparison Table Enhancement */
.comparison-table th:nth-child(2) {
    background-color: #ff6b6b;
}

.comparison-table tr:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.comparison-table .check {
    position: relative;
    z-index: 1;
}

.comparison-table .check:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.comparison-table .x {
    position: relative;
    z-index: 1;
}

.comparison-table .x:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Bonus Items Enhancement */
.bonus-item {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bonus-item:hover {
    border-color: #ff6b6b;
}

.bonus-badge {
    transform: rotate(-5deg);
}

.now-free {
    position: relative;
    z-index: 1;
}

.now-free:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: #28a745;
    border-radius: 20px;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

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

.robbery-badge {
    transform: rotate(15deg);
    animation: wiggle 2.5s infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Stock Counter Enhancement */
.stock-bar {
    position: relative;
    overflow: hidden;
}

.stock-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stock-text {
    position: relative;
}

.stock-text:after {
    content: 'Hurry!';
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 0.9rem;
    color: #ff6b6b;
    font-weight: 700;
    animation: blink 1s infinite;
}

/* Countdown Enhancement */
.countdown-item {
    position: relative;
    overflow: hidden;
}

.countdown-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6b6b;
    animation: countdown-progress 60s linear infinite;
}

@keyframes countdown-progress {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

/* Pricing Box Enhancement */
.pricing-box {
    position: relative;
    overflow: hidden;
}

.pricing-box:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: #ff6b6b;
    transform: rotate(45deg);
    z-index: 1;
}

.exclusive-badge {
    position: relative;
    z-index: 2;
}

.price-amount {
    position: relative;
    display: inline-block;
}

.price-amount:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 10px;
    background-color: rgba(255, 107, 107, 0.2);
    z-index: -1;
}

/* Guarantee Enhancement */
.guarantee-badge-img {
    filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.5));
}

.guarantee-item {
    position: relative;
    padding-left: 15px;
}

.guarantee-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #28a745;
    border-radius: 5px;
}

/* Trust Seals Enhancement */
.trust-seals {
    position: relative;
}

.trust-seals:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(40, 167, 69, 0.5) 50%, transparent 100%);
}

.seal-item i {
    position: relative;
}

.seal-item i:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Exit Popup Enhancement */
.popup-content {
    animation: popup-entrance 0.5s forwards;
}

@keyframes popup-entrance {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-price {
    position: relative;
    display: inline-block;
}

.popup-price:after {
    content: 'SAVE 50%';
    position: absolute;
    top: -25px;
    right: -30px;
    background-color: #28a745;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    transform: rotate(15deg);
}

/* Recent Purchase Notification Enhancement */
.purchase-content {
    position: relative;
}

.purchase-content:after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: #28a745;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Visitor Counter Enhancement */
.visitor-counter {
    position: relative;
    overflow: hidden;
}

.visitor-counter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: shine 3s infinite;
}

#visitor-count {
    position: relative;
    display: inline-block;
}

/* Seta verde removida - não é mais necessária */

/* CTA Button Enhancement */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: button-shine 3s infinite;
}

@keyframes button-shine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

/* FAQ Enhancement */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b 0%, transparent 100%);
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Mobile CTA Enhancement */
.mobile-cta {
    animation: slide-up 0.5s forwards;
}

@keyframes slide-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Ripple Effect for Buttons */
.ripple {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
