.simulators-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.simulators-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
}

/* Tarjeta de simulador */
.simulator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 50px;
    min-width: 220px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* ===== BOTÓN AHORRO ===== */
.savings-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3), 
                0 4px 6px rgba(0, 0, 0, 0.1);
}

.savings-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.savings-card:hover::before {
    opacity: 1;
}

/* ===== BOTÓN CRÉDITO ===== */
.credit-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 
                0 4px 6px rgba(0, 0, 0, 0.1);
}

.credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.credit-card:hover::before {
    opacity: 1;
}

/* ===== EFECTOS HOVER ===== */
.simulator-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                0 8px 16px rgba(0, 0, 0, 0.1);
}

.simulator-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* ===== ICONO ===== */
.simulator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    /* border-radius: 16px; */
    border-radius: 3px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.simulator-card:hover .simulator-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    outline-width: 10px;
    border-radius: 20px;
    transform: rotate(-5deg) scale(1.1);
}

/* ===== TEXTO ===== */
.simulator-label {
    position: relative;
    z-index: 1;
}

/* ===== FLECHA ===== */
.simulator-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.simulator-card:hover .simulator-arrow {
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

/* ===== ANIMACIÓN ENTRADA ===== */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.simulator-card {
    animation: slideUpFade 0.6s ease forwards;
}

.simulator-card:nth-child(1) {
    animation-delay: 0.2s;
}

.simulator-card:nth-child(2) {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
    .simulators-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .simulator-card {
        width: 100%;
        padding: 30px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .simulator-icon {
        width: 55px;
        height: 55px;
    }
    
    .simulator-arrow {
        margin-left: auto;
    }
}

@media (max-width: 400px) {
    .simulator-card {
        padding: 25px 20px;
        font-size: 1.1rem;
    }
    
    .simulator-icon {
        width: 50px;
        height: 50px;
    }
    
    .simulator-icon svg {
        width: 24px;
        height: 24px;
    }
}