/* ========================================
   COPY ÉPICO - STYLES PARA ROMPER INTERNET
   ======================================== */

/* Animaciones para urgencia */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.6); }
    100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
}

/* Pulse animation para CTA */
.pulse-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Service cards enhanced */
.service-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-guarantee {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    animation: pulse 3s infinite;
}

/* Credibility killer section */
.credibility-killer {
    position: relative;
    overflow: hidden;
}

.credibility-killer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: float 20s linear infinite;
    pointer-events: none;
}

.stat-bomb {
    transition: transform 0.3s ease;
}

.stat-bomb:hover {
    transform: scale(1.1);
}

.big-number {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Urgency box styling */
.urgency-box {
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #dc2626, #ef4444);
    border-radius: inherit;
    animation: rotate 4s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Countdown timer styling */
#countdown {
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Enhanced hover effects */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Testimonial enhancements */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Mobile responsiveness for epic copy */
@media (max-width: 768px) {
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .big-number {
        font-size: 2rem !important;
    }
    
    .urgency-bomb h2 {
        font-size: 2rem !important;
    }
    
    .urgency-bomb h3 {
        font-size: 1.5rem !important;
    }
    
    #countdown {
        gap: 1rem !important;
    }
    
    #countdown > div > div:first-child {
        font-size: 2rem !important;
    }
}

/* Performance optimization */
.service-card,
.stat-bomb,
.testimonial-card {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .urgency-box,
    .credibility-killer {
        background: white !important;
        color: black !important;
    }
}