/* ========================================
   MELHORIAS LANDING PAGE - FASE 1
   ======================================== */

/* 1. TIMER DE OFERTA LIMITADA */
.urgency-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 16px;
    padding: 20px 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 8px 48px rgba(255, 107, 107, 0.5);
    }
}

.timer-content {
    text-align: center;
}

.timer-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: shake 1s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.timer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
}

.timer-unit span {
    display: block;
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.timer-unit small {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.timer-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 2. NOTIFICAÇÕES DE COMPRAS RECENTES */
.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    z-index: 999;
    animation: slideInLeft 0.5s ease-out, slideOutLeft 0.5s ease-in 5.5s;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-400px);
        opacity: 0;
    }
}

.notification-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-content strong {
    color: #333;
    font-weight: 600;
}

.notification-action {
    color: #666;
    font-size: 0.9rem;
    margin: 3px 0;
}

.notification-time {
    color: #999;
    font-size: 0.75rem;
}

/* 3. BADGES DE GARANTIA NO HERO */
.guarantee-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.badge-item i {
    font-size: 1.3rem;
    color: #4ade80;
}

/* 4. MELHORAR CTAs */
.ultra-btn-primary,
.ultra-btn-hero-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ultra-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ultra-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.ultra-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

/* Pulse animation para CTAs */
@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.ultra-btn-primary {
    animation: pulse-cta 2s infinite;
}

/* 5. CONTADOR DE VAGAS */
.limited-spots {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    padding: 15px 25px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.limited-spots-text {
    color: #78350f;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.limited-spots-number {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 800;
}

/* 6. SELO DE SATISFAÇÃO */
.satisfaction-seal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    animation: rotate-seal 20s linear infinite;
}

@keyframes rotate-seal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.satisfaction-seal-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.satisfaction-seal-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 7. COMPARAÇÃO RÁPIDA */
.quick-comparison {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #fbbf24;
}

.comparison-service {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.comparison-price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 10px 0;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.comparison-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 0.9rem;
}

/* 8. MOBILE RESPONSIVO */
@media (max-width: 768px) {
    .urgency-timer {
        padding: 15px 20px;
    }
    
    .timer-unit {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .timer-unit span {
        font-size: 1.8rem;
    }
    
    .timer-subtitle {
        font-size: 1rem;
    }
    
    .purchase-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
    
    .guarantee-badges {
        gap: 10px;
    }
    
    .badge-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* 9. ANIMAÇÕES DE ENTRADA */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 10. DESTAQUE DE ECONOMIA - DESABILITADO */
/* Badges de economia removidos para não conflitar com design existente */
.savings-highlight {
    display: none !important;
}
