/* === PREMIUM FRONTEND DESIGN SYSTEM === */
/* Componentes de alta fidelidad para conversión y estética */

/* 1. SCAM MODUS OPERANDI GRID */
.scam-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.scam-step-card {
    background: rgba(20, 20, 20, 0.6);
    /* Glass Dark */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #dc2626;
    /* Warning Red */
    padding: 2rem 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.scam-step-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 20px 40px -5px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

/* Tipografía Numérica Gigante */
.step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    z-index: 0;
    pointer-events: none;
}

/* Iconografía */
.step-icon {
    font-size: 2rem;
    color: #ef4444;
    /* Brighter Red */
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* Textos */
.step-title {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #a3a3a3;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* 2. CALL TO ACTION PREMIUM (BUTTON) */
.btn-premium-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Efecto Shine al pasar el ratón */
.btn-premium-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-premium-call:hover::before {
    left: 100%;
}

.btn-premium-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.3), 0 15px 30px rgba(220, 38, 38, 0.4);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-premium-call i {
    font-size: 1.3em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .scam-timeline-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .btn-premium-call {
        width: 100%;
        /* Full width on mobile */
        padding: 15px 20px;
        font-size: 1.2rem;
    }
}