/* ============================================
   ESTILOS DAS OTIMIZAÇÕES DE CONVERSÃO
   ============================================ */

/* Badge Opcional */
.optional-badge {
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
}

/* ============================================
   SEÇÃO DE VÍDEOS DEPOIMENTOS
   ============================================ */
.video-testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.video-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(78, 205, 255, 0.2);
    border-color: rgba(78, 205, 255, 0.3);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder .fa-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
    opacity: 0;
}

.video-info {
    padding: 20px;
}

.video-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4ecdff;
    font-weight: 600;
}

.video-author i {
    font-size: 24px;
}

.video-info p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-rating {
    display: flex;
    gap: 5px;
}

.video-rating i {
    color: #ffd700;
    font-size: 16px;
}

/* ============================================
   SEÇÃO DE GARANTIA MEGA
   ============================================ */
.mega-guarantee {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.guarantee-mega-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(78, 205, 255, 0.1), rgba(69, 183, 209, 0.05));
    border: 3px solid #4ecdff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(78, 205, 255, 0.3);
}

.guarantee-icon-mega {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    box-shadow: 0 10px 30px rgba(78, 205, 255, 0.5);
    animation: pulse-guarantee 2s ease-in-out infinite;
}

@keyframes pulse-guarantee {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(78, 205, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(78, 205, 255, 0.7);
    }
}

.guarantee-mega-card h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.guarantee-mega-card h3 {
    font-size: 24px;
    color: #4ecdff;
    margin-bottom: 40px;
    font-weight: 700;
}

.guarantee-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.guarantee-reasons .reason {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 255, 0.2);
}

.guarantee-reasons .reason i {
    font-size: 24px;
    color: #2ed573;
}

.guarantee-reasons .reason span {
    color: #fff;
    font-size: 16px;
    text-align: left;
}

.guarantee-highlight {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
}

.guarantee-highlight i {
    font-size: 28px;
}

.guarantee-proof p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.guarantee-proof small {
    color: #888;
    font-size: 14px;
}

/* ============================================
   SEÇÃO DE PROVA SOCIAL REAL-TIME
   ============================================ */
.realtime-social-proof {
    padding: 80px 20px;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.proof-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.proof-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 255, 0.2);
    border-color: #4ecdff;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
}

.live-purchases {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.live-purchases h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-purchases .fa-circle {
    color: #2ed573;
    font-size: 12px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

.purchases-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.purchase-notification {
    background: rgba(46, 213, 115, 0.1);
    border-left: 3px solid #2ed573;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInFromLeft 0.5s ease-out;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.purchase-notification i {
    color: #2ed573;
    font-size: 20px;
}

.purchase-notification span {
    color: #fff;
    font-size: 14px;
}

.purchase-notification .time {
    margin-left: auto;
    color: #888;
    font-size: 12px;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-mega-card {
        padding: 40px 20px;
    }
    
    .guarantee-mega-card h2 {
        font-size: 28px;
    }
    
    .guarantee-mega-card h3 {
        font-size: 18px;
    }
    
    .guarantee-reasons {
        grid-template-columns: 1fr;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-stat {
        flex-direction: column;
        text-align: center;
    }
}

