/**
 * EcoKambio CTA Blocks - Conversion Components
 * 3 persona-targeted call-to-action blocks for /visa service
 */

/* Base CTA Styles */
.eck-cta-block {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.eck-cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.eck-cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.eck-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.eck-cta-subtitle {
    font-size: 0.95rem;
    margin: 0 0 16px 0;
    opacity: 0.9;
}

.eck-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.eck-cta-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eck-cta-features li::before {
    content: '✓';
    font-weight: bold;
}

.eck-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.eck-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.eck-cta-note {
    font-size: 0.75rem;
    margin-top: 12px;
    opacity: 0.7;
}

/* Persona A: Entretenimento (Netflix, Spotify) - Gradient Purple/Pink */
.eck-cta-entertainment {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.eck-cta-entertainment::before {
    background: linear-gradient(90deg, #e50914, #ff6b6b, #a855f7);
}

.eck-cta-entertainment .eck-cta-features li::before {
    color: #ff6b6b;
}

.eck-cta-entertainment .eck-cta-button {
    background: linear-gradient(135deg, #e50914 0%, #a855f7 100%);
    color: #fff;
}

/* Persona B: Business/Importador (Alibaba, Shein) - Gradient Blue/Teal */
.eck-cta-business {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
}

.eck-cta-business::before {
    background: linear-gradient(90deg, #ff6600, #0ea5e9, #14b8a6);
}

.eck-cta-business .eck-cta-features li::before {
    color: #0ea5e9;
}

.eck-cta-business .eck-cta-button {
    background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    color: #fff;
}

/* Persona C: Tech/Dev (OpenAI, APIs) - Gradient Green/Emerald */
.eck-cta-tech {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2e1a 100%);
    color: #fff;
}

.eck-cta-tech::before {
    background: linear-gradient(90deg, #10b981, #22c55e, #84cc16);
}

.eck-cta-tech .eck-cta-features li::before {
    color: #22c55e;
}

.eck-cta-tech .eck-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
    color: #fff;
}

/* Trust Badge */
.eck-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 640px) {
    .eck-cta-block {
        padding: 20px;
    }
    
    .eck-cta-title {
        font-size: 1.25rem;
    }
    
    .eck-cta-button {
        width: 100%;
        justify-content: center;
    }
}
